안드로이드 스튜디오 > 다운로드 > Empty View Activity , 자바로 설정
Phone > pixel 2 를 누르고 피니쉬.
삼각형을 눌러서 실행
AndroidManifext.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapplication">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".Page1"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Page2"
android:exported="false" />
</application>
</manifest>
등등 오류나오는것을 잡으면 가상 에뮬레이트가 나옴
'안드로이드스튜디오' 카테고리의 다른 글
안드로이드 기능 구현의 단계별 설명 (1) | 2024.09.15 |
---|---|
안드로이드 주요 UI 요소 및 활용 방법 (1) | 2024.09.15 |
안드로이드 스튜디오 앱개발 단계 (3) | 2024.09.15 |