Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # (핵심만 골라 배우는) 안드로이드 스튜디오 샘플소스 : https://github.com/Jpub/AndroidStudio ### 30.4 첫 번째 장면 디자인하기 ### 30.6 첫 번째 장면 보여주기 ### 30.9 전환 파일 추가하기 app → res → transition 폴더에 위치해야 한다. <code XML transition.xml 파일생성> <?xml version="1.0" encoding="utf-8"?> <transitionSet xmlns:android="http://schemas.android.com/apk/res/android"> <fade android:duration="2000" android:fadingMode="fade_in"> <targets> <target android:targetId="@id/button3"/> </targets> </fade> <changeBounds android:duration="2000" android:interpolator="@android:anim/bounce_interpolator" > </changeBounds> </transitionSet> </code> ### 31.1 인텐트 개요 인텐트(android.content.Intent)는 하나의 액티비티가 다른 액티비티를 론칭할 수 있는 메시징 시스템이다. open/핵심만-골라-배우는-안드로이드-스튜디오.txt Last modified: 2024/10/05 06:15by 127.0.0.1