Как убрать ярлык в андроид студии - PullRequest
1 голос
/ 24 сентября 2019

сейчас я пытаюсь использовать пользовательскую панель инструментов, которую я создал, но есть метка белого цвета. текст: тест с белым цветом

как мне это убрать?

ниже мой манифест и код styles.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test">

<application
    android:allowBackup="true"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

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

обновить мой toolbar.xml

<androidx.appcompat.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
app:theme="?attr/actionBarTheme">

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:contentDescription="resquare_logo"
    android:src="@drawable/logo"/>

Ответы [ 3 ]

2 голосов
/ 24 сентября 2019

В Kotlin вы можете сделать как

 val toolbar = findViewById<androidx.appcompat.widget.Toolbar>(R.id.toolbar)
 setSupportActionBar(toolbar)
 supportActionBar?.setDisplayShowTitleEnabled(false)
0 голосов
/ 24 сентября 2019

Я попробовал твой код.Я не получаю белый ярлык

Manifest.xml

<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=".TestActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

style.xml

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>

        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>
activity_test.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:background="@color/colorPrimary"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <androidx.appcompat.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?attr/actionBarSize"
        app:theme="?attr/actionBarTheme">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:contentDescription="resquare_logo"
            android:src="@drawable/ic_action_name" />
    </androidx.appcompat.widget.Toolbar>
</LinearLayout>
TestActivity.java
@Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_test);
    }
0 голосов
/ 24 сентября 2019

Попробуйте это

Toolbar toolbar = findViewById(R.id.toolbarActionBar);
        if (toolbar != null) {
            (this).setSupportActionBar(toolbar);
toolbar.setNavigationIcon(R.drawable.ic_home);
getSupportActionBar().setDisplayShowTitleEnabled(false);
}

или:

getSupportActionBar().setTitle(null);

или это, чтобы скрыть

getSupportActionBar().setTitle("");
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...