• Как локализовать название вкладок в TavLayout?

    @Bartar Автор вопроса
    @Override
        public CharSequence getPageTitle(int position) {
            switch (position){
                case 0: return getString(R.string.tab_item_Room);
                case 1: return getString(R.string.tab_item_Friend);
                case 2: return getString(R.string.tab_item_Message);
                default: return null;
            }
        }
    Ответ написан
    Комментировать
  • Не устанавливаются кнопки на 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"
         />
    Ответ написан
    Комментировать