web-dev-qa-db-ja.com

Androidでツールバーを非表示にする方法は?

私はAndroidで本当に新しいですが、Googleテンプレートの1つを使用して小さなプロジェクトで作業しています。タブ付きのタブ付きアクティビティ...タイトルセクション(tabbedExample)を非表示にする方法はありますか。タブのみを保持しますか?

enter image description here

styles.xml

  <resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

    <style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>

Manifiest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android"
    package="c.example.jinzunza.tabstoolbars">

    <application
        Android:allowBackup="true"
        Android:icon="@mipmap/ic_launcher"
        Android:label="@string/app_name"
        Android:roundIcon="@mipmap/ic_launcher_round"
        Android:supportsRtl="true"
        Android:theme="@style/AppTheme">
        <activity
            Android:name=".MainActivity"
            Android:label="@string/app_name"
            Android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action Android:name="Android.intent.action.MAIN" />

                <category Android:name="Android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>
5
Pedro

ソリューション:

これの代わりに:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>

このように書きます:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>

それを試してみてください 。うまくいくことを願っています。

1

OnCreate()でthis.requestWindowFeature(Window.FEATURE_NO_TITLE);を試す必要があります

またはさらに簡単に、テーマを@Android:style/Theme.NoTitleBarに設定します

非常によく似た質問が回答されました ここ

そこでもっと答えを見つけるべきです。

1
Sk83r1l4m4

アクティビティ用:

getSupportActionBar().hide();

フラグメントのJava使用:

((MainActivity) requireActivity()).getSupportActionBar().hide();

kotlinのフラグメントの場合:

(requireActivity() as MainActivity).supportActionBar!!.hide()
1
Biplob Das

このテーマをstyles.xmlファイルに設定します。

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
0
Shivam Dawar

ツールバーを非表示にして、これをアクティビティに追加し、oncreateメソッドgetSupportActionBar().hide();に入れることができます。

0
Gabriele Puia