Могу ли я всплыть в верхнем левом углу на панели инструментов в Android Studio? - PullRequest
0 голосов
/ 01 октября 2019

У меня есть это:

enter image description here

Но я хочу переместить значок дома вверху слева, как:

enter image description here

У меня есть это в моем menu_main.xml файле

<?xml version="1.0" encoding="utf-8"?>
<menu 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"
    tools:context=".MainActivity">

    <item
        android:id="@+id/action_notificaciones"
        android:orderInCategory="300"
        android:title="User"
        android:icon="@drawable/ic_notificaciones"
        app:showAsAction="ifRoom"></item>

    <item
        android:id="@+id/action_home"
        android:orderInCategory="300"
        android:title="User"
        android:icon="@drawable/ic_go_home"
        app:showAsAction="ifRoom"></item>


</menu>

Как я могу это сделать? Любая помощь?

1 Ответ

0 голосов
/ 01 октября 2019

Вы можете использовать панель инструментов и установить изображение для значка и текстовое представление для заголовка, это пример

<com.google.android.material.appbar.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbarTransaction"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <ImageView
                android:layout_weight="1"
                android:layout_width="0dp"
                android:layout_height="50dp"
                android:src="@drawable/img_vireopos_icon"/>\

            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="4"
                android:textSize="10pt"
                android:text="testing"/>

            <ImageView
                android:layout_weight="1"
                android:layout_width="0dp"
                android:layout_height="50dp"
                android:src="@drawable/img_vireopos_icon"/>\


        </LinearLayout>

    </androidx.appcompat.widget.Toolbar>

</com.google.android.material.appbar.AppBarLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...