=================================
=================================
=================================
출처: http://202psj.tistory.com/559
매니패스트. AndroidManifest.xml
현재 패키지의 기본 경로를 설정되어 있으면
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="internalOnly" android:versionCode="25" package="com.psj.game" android:versionName="2.0.3">
이와 같이 package 부분에 "com.psj.game" 에 기본으로 base 경로가 설정이 되어있다.
그럼 아래와 같이 경로 activity 를 만들어보자
<activity android:name="com.psj.game.login.CIntro" android:screenOrientation="portrait" android:configChanges="orientation|keyboard"></activity>
<activity android:name="com.psj.game.games.CWatchBoard" android:screenOrientation="portrait" android:configChanges="orientation|keyboard"></activity>
"com.psj.game"이 부분을 매니페스트 부분을 "."으로 생략할수 있다..
com.psj.game.login.CIntro -> .login.CIntro
com.psj.game.games.CWatchBoard -> .games.CWatchBoard
<activity android:name=".login.CIntro" android:screenOrientation="portrait" android:configChanges="orientation|keyboard"></activity>
<activity android:name=".games.CWatchBoard" android:screenOrientation="portrait" android:configChanges="orientation|keyboard"></activity>
=================================
=================================
=================================
'스마트기기개발관련 > 안드로이드 개발' 카테고리의 다른 글
안드로이드 AlertDialog 다이얼로그 클래스 크기, 이동 설정 관련 (1) | 2013.07.11 |
---|---|
android 안드로이드 WebView: html 띄우기/파싱 html 코드보기,가져오기 예제 관련 (1) | 2013.07.08 |
안드로이드 이동키로 포커스를 이동할때 webview 에서 web 안의 포커스가 나와서 다음 뷰어의 포커스로 넘어 가지 않을때 그나마 나은 대처방법 관련 (0) | 2013.06.18 |
안드로이드 네트워크 패킷 리시브(recv) 또는 이벤트 관련 post,또는 딜레이 처리 팁 (0) | 2013.06.13 |
안드로이드 결제, Billing Library Version, 인 앱 결제(In-app Billing) 관련 (0) | 2013.04.03 |
댓글 영역