|
|
|
Android ขอคำสั่งวิธีการปิดตัวบอกเวลาข้างบนหน่อยครับ แนะนำที |
|
|
|
|
|
|
|
,มันการซ่อน Title bar หรือ bar ที่อยู่ข้างบนครับ ลอง ใช้ ตามนี้ดูนะครับ
Code (Android-Java)
//Remove notification bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
//***********************************************************************************************
หรือ ถ้าไม่ได้
Code (Android-Java)
<activity android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
//*****************************************************************************************
ถ้าไม่ได้อีก
Code (Android-Java)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.lesterxu.testapp2">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.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>
แล้วเปลี่ยน
แล้วก็ใส่
Code (Android-Java)
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
โดย check ได้ที่ activity นั้นว่าถูกเปลี่ยนแล้ว ลองดูนะครับ <activity android:name=".youractivityname"
android:theme="@style/AppTheme.NoActionBar">
</activity>
|
ประวัติการแก้ไข 2017-02-27 12:54:07
|
|
|
|
Date :
2017-02-27 12:48:01 |
By :
heloman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2017-02-27 15:12:23 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|