Android
TransitionDrawable
खोज…
दो छवियों के बीच संक्रमण या क्रॉस-फीका जोड़ें।
चरण 1: एक्सएमएल में एक परिवर्तनशील ड्रॉबल बनाएं
इस फ़ाइल को सहेजें transition.xml
में res/drawable
अपनी परियोजना के फ़ोल्डर।
<transition xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/image1"/>
<item android:drawable="@drawable/image2"/>
</transition>
Image1 और image2 दो छवियां हैं जिन्हें हम संक्रमण करना चाहते हैं और उन्हें आपके res/drawable
फ़ोल्डर में भी रखा जाना चाहिए।
चरण 2: उपरोक्त ड्रा करने योग्य प्रदर्शित करने के लिए अपने XML लेआउट में ImageView के लिए कोड जोड़ें।
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<ImageView
android:id="@+id/image_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/image1"/>
</LinearLayout>
चरण 3: अपनी गतिविधि के onCreate () विधि में XML ट्रांस्फ़ॉर्म ड्रॉबल एक्सेस करें और ऑनक्लिक () ईवेंट में संक्रमण शुरू करें।
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
imageView = (ImageView) findViewById(R.id.image_view);
transitionDrawable = (TransitionDrawable)
ContextCompat.getDrawable(this, R.drawable.transition);
birdImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(final View view) {
birdImageView.setImageDrawable(transitionDrawable);
transitionDrawable.startTransition(1000);
}
});
}
चेतन दृश्य संक्रमण के साथ पृष्ठभूमि रंग (स्विच-रंग)
public void setCardColorTran(View view) {
ColorDrawable[] color = {new ColorDrawable(Color.BLUE), new ColorDrawable(Color.RED)};
TransitionDrawable trans = new TransitionDrawable(color);
if(Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.JELLY_BEAN) {
view.setBackgroundDrawable(trans);
}else {
view.setBackground(trans);
}
trans.startTransition(5000);
}
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow