Android
전환 도우미
수색…
두 이미지 사이에 전환 또는 크로스 페이드를 추가합니다.
1 단계 : XML로 전환 드로어 블 만들기
이 파일 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 전환 드로어 블에 액세스하고 onClick () 이벤트에서 전환을 시작합니다.
@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);
}
});
}
TransitionDrawable을 사용하여 배경색 (스위치 색상)보기 애니메이션 만들기
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