G
G
Good Samaritan2019-02-15 18:12:28
Android
Good Samaritan, 2019-02-15 18:12:28

How to remove the top panel with the name of the application in webview?

I made a webview for my site. Do not tell me how to remove the top bar with the name of the application?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
Petya, 2019-02-15
@djamali

AndroidManifest.xml

<activity
  android:name=".ui.activity.MyActivity"
  android:theme="@style/MyTheme">
</activity>

styles.xml
<style name="MyTheme"  parent="your parent theme">
  <item name="android:windowNoTitle">true</item>
  <item name="android:windowFullscreen">true</item> 
</style>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question