Задать вопрос
Ответы пользователя по тегу Java
  • Не устанавливаются кнопки на toolbar? В чем может быть причина?

    @Bartar Автор вопроса
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
       android:background="@color/colorAccent">
        <include android:id= "@+id/toolbar"
            layout="@layout/toolbar" />
    </LinearLayout>

    а вот сам тулба
    <?xml version="1.0" encoding="utf-8"?>
    <android.support.v7.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:background="@color/colorPrimary"
         />
    Ответ написан
    Комментировать