1. Activity 만든다. (SplashActivity)
1 2 3 4 5 6 7 8 9 10 11 12 13 | public class SplashActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //넘어갈 액티비티 Intent intent = new Intent(this, MainActivity.class); intent.putExtra("state","launch"); startActivity(intent); finish(); } } | cs |
2. XML 수정한다. (styles.xml)
1 2 3 | <style name="SplashTheme" parent="android:style/Theme.Light.NoTitleBar"> <item name="android:windowBackground">@drawable/splash_img</item> </style> | cs |
3. AndroidManifest.xml 수정한다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <!-- main --> <activity android:name=".MainActivity"> </activity> <!-- splash --> <activity android:name=".SplashActivity" android:theme="@style/SplashTheme" android:screenOrientation="portrait" android:noHistory="true" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> | cs |
끝.
'C.E' 카테고리의 다른 글
하드디스크 데이터 복구에 대한 고찰-2 (0) | 2019.08.09 |
---|---|
하드디스크 데이터 복구에 대한 고찰-1 (0) | 2019.08.09 |
컴퓨터 전공자가 추천하는 가성비 갑 노트북 MSI CX62-6QD 리뷰 (꿀팁/스압주의) (6) | 2018.04.05 |
PM(프로그램 매니저)관련 내용 정리중입니다. *headfirst PMP(헤드퍼스트 PMP) (0) | 2017.11.29 |
스토리보드 만들기, 기획 (0) | 2013.11.02 |