我試圖從活動中刪除操作欄。如何從活動中刪除操作欄
我已經做以下,但其仍然保持操作欄上的我的活動
public class MyActivity extends AppCompatActivity{ .. }
佈局
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".TM.TMActivity"
style="@style/AppTheme.NoActionBar"
>
<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
style="@style/AppTheme.NoActionBar"
/>
</android.support.design.widget.CoordinatorLayout>
Style.xml
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
我是否需要在'CoordinatorLayout'上添加此樣式? – Kirmani88
仍然得到操作欄 – Kirmani88
@ Kirmani88只需去res-> values-> styles。把上面給出的代碼放在那裏。它應該肯定有效。如果你仍然得到它,那麼在你的activity的onCreate函數中調用getSupportActionBar()。hide(); 希望它有幫助。 –