android studio full screen 예제
/manifests/AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.dialog">
<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/Theme.AppCompat.Light.NoActionBar">
***
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
<application> 안의 android:theme="~ NoActionBar"로 작성하면 된다.
'프로젝트 기록 > android' 카테고리의 다른 글
[android/안드로이드] Fragment, 액티비티에서 프래그먼트로 정보 전달하기 예제 (0) | 2020.01.10 |
---|---|
[android/안드로이드] Fragment - list fragment 리스트 프래그먼트 예제 (0) | 2020.01.10 |
[android/안드로이드] WebView 웹뷰 예제 (1) | 2020.01.09 |
[android/안드로이드] Login dialog 예제 (0) | 2020.01.08 |
[android/안드로이드] Dialog list, radio, check box형태의 dialog 예제 (0) | 2020.01.08 |