2015년 8월 26일 수요일

[Android 개발]Theme.AppCompat 테마를 사용하여 FullScreen 적용하기

Adjusting your screen mode widh fullscreen in andriod.


-------------styles.xml ---------------
<style name="AppTheme" parent="Theme.AppCompat">
    <!-- Customize your theme here. -->    <item name="android:windowActionBar">false</item>
    <item name="android:windowNoTitle">true</item>
</style>


----------------AndroidManifest.xml--------------------

<application    android:allowBackup="true"    android:icon="@mipmap/ic_launcher"    android:label="@string/app_name"    android:theme="@style/AppTheme" 


-------------------MainActivity.java--------------------------

public class MainActivity extends FragmentActivity


댓글 없음:

댓글 쓰기