Android
  • 官方文件
  • Android studio
    • Layout Editor
    • WebView
    • 發佈
    • 常見問題
  • 專案架構
    • AndroidManifest.xml
  • 程式相關
    • Material Design
    • 隱藏 title bar
    • HTTP GET
    • 使用 Java 8
    • onClick
    • 新增畫面
    • delay
    • Layout 檔案設定
    • WebRTC
  • listView
Powered by GitBook
On this page

Was this helpful?

  1. 程式相關

隱藏 title bar

PreviousMaterial DesignNextHTTP GET

Last updated 4 years ago

Was this helpful?

title bar 是最上方的一行,隱藏方法如下

<activity
  android:theme="@style/Theme.AppCompat.NoActionBar"
>
</activity>

https://stackoverflow.com/a/21814845/4622645