메뉴 건너뛰기

조회 수 7577 추천 수 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
번호 제목 날짜 조회 수
97 하이브리드 앱에서의 세션관리(로그인 상태 유지) 2018.12.27 5020
96 WebView를 사용할때 HttpClient를 이용한 Session 유지 2018.12.27 4387
95 안드로이드 - 에디트텍스트(EditText) 사용법 정리 file 2021.03.29 2769
94 WebView에서 카메라 및 이미지 업로드 (선택적용가능) file 2020.12.14 2721
93 구글맵으로 GPS 현재위치 실시간 연동하기 file 2020.12.14 2476
92 위젯 업데이트 주기 빠르게 하기 2018.10.02 2144
91 안드로이드 - 네비게이션 드로어(Navigation Drawer)를 활용하여 슬라이드 메뉴 구현하기 file 2021.04.01 1879
90 MediaPlayer 클래스 사용법 file 2018.10.02 1803
89 안드로이드 - 날짜 및 시간 정보 입력받기 (DatePickerDialog / TimePickerDialog) file 2021.04.01 1780
88 Android Studio에서 SQLCipher 라이브러리 추가 방법 file 2018.10.02 1776
87 안드로이드 WebView 에서 tel: 이 되지않는 경우. 2018.10.02 1637
86 Apk manager 이용해 Decompile (디컴파일) 하기 file 2021.03.16 1629
85 Volley 로 웹요청하고 응답받기2 - Post방식 , 로그인-회원가입 (php,mysql 연동) file 2020.12.14 1444
84 안드로이드 - BottomNavigationView 사용하여 하단 메뉴 만들기 file 2021.04.02 1442
83 안드로이드 - 타이머(Timer) 구현하기 2021.04.01 1370
82 [하이브리드앱] userAgent를 이용해서 웹 / 앱 접속 구분하기 2021.09.30 1291
81 안드로이드 - switch를 사용법 및 구현 file 2021.04.02 1282
80 안드로이드 - 텍스트뷰(TextView) 사용법 정리 file 2021.03.31 1255
79 안드로이드 - KeyEvent(키 이벤트) 처리 file 2021.04.02 1217
78 WebView 작업할때 Net::ERR_UNKNOWN_URL_SCHEME 에러 발생할때 (전화걸기,문자보내기 안된다) 2020.12.14 1078
Board Pagination Prev 1 ... 4 5 6 7 8 9 10 11 12 13 Next
/ 13

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

© k2s0o1d4e0s2i1g5n. All Rights Reserved