메뉴 건너뛰기

조회 수 7581 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부

구조


src-> initActivity가 res/layout/init.xml의 화면을 가진다.

1.5초 후에 initActivity후 src->MainActivity를 호출한다.

MainActivity는 layout/activity_main.xml의 화면을 가진다.


Manifest에서 처음 시작하는 액티비티를 추가적으로 써줘야 한다.



    <application

        android:allowBackup="true"

        android:icon="@drawable/ic_launcher"

        android:label="@string/app_name"

        android:theme="@style/AppTheme" >

        <activity

            android:name="student.yang.age_calculator.initActivity"

            android:theme="@android:style/Theme.NoTitleBar" >

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

        <activity

            android:name=".MainActivity"

            android:label="@string/app_name" >

        </activity>

    </application>



List of Articles
번호 제목 날짜 조회 수
77 안드로이드 스튜디오 actionbar(액션바) 사라짐 file 2020.12.14 639
76 패키지명을 한꺼번에 변경하기 (Refactor) file 2020.12.14 299
75 하이브리드앱 기본 - WebView로 웹페이지 띄우기 file 2020.12.14 1030
74 ListView 리스트뷰 연습3 - 커스텀 리스트뷰 (Custom ListView) file 2020.12.14 906
73 초기화면 페이지를 만들어보자. splash 페이지 제작 file 2020.12.14 290
72 안드로이드 앱배포하기 apk 만들기 file 2020.12.14 331
71 안드로이드 입문 연습문제 3문항 - CheckBox, RadioButton, EditText, Spinner, 이벤트연습 file 2020.12.14 482
70 Apk manager 이용해 Decompile (디컴파일) 하기 file 2021.03.16 1631
69 안드로이드 arrayList 를 Json으로 변환 / jsonarry file 2021.03.29 326
68 안드로이드 unescape /escape [StringEscapeUtils로 해결] file 2021.03.29 345
67 안드로이드 스튜디오 - 싱글톤 패턴 (SingleTon Pattenr) 클래스 자동 생성 file 2021.03.29 627
66 안드로이드 스튜디오 - getter/setter 메소드 자동생성 file 2021.03.29 589
65 안드로이드 스튜디오 - 필수 재정의 함수 자동 코드 추가 file 2021.03.29 195
64 안드로이드 스튜디오 - 코드 자동 들여쓰기 file 2021.03.29 421
63 안드로이드 - 리니어 레이아웃 (Linear Layout) file 2021.03.29 320
62 안드로이드 - 랠러티브 레이아웃(Relative Layout) file 2021.03.29 241
61 안드로이드 - 프레임레이아웃 (FrameLayout) file 2021.03.29 519
60 안드로이드 - 에디트텍스트(EditText) 사용법 정리 file 2021.03.29 2769
59 버튼 생성, 이벤트 처리 file 2021.03.31 236
58 Java에서 XML 불러와서 동적 변화 주기 file 2021.03.31 289
Board Pagination Prev 1 ... 4 5 6 7 8 9 10 11 12 13 Next
/ 13

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved