Я знаю, что этот вопрос задавался ранее, но предложенные решения мне пока не помогли.
У меня есть базовая раскладка:
activity_main.xml
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include
android:id="@+id/my_toolbar"
layout="@layout/test_toolbar"/>
<android.support.design.widget.TabLayout
android:id="@+id/maths_tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.design.widget.TabLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/maths_view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
макет включения:
test_toolbar.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Hello workd"
android:textSize="20sp" />
</android.support.v7.widget.Toolbar>
Я хочу найти TextView внутримой макет включения.
Код, который я пробовал до сих пор, но не сработал:
Toolbar toolbar= findViewById(R.id.test_toolbar);
TextView toolbarTitle= toolbar.findViewById(R.id.tv_title);
toolbarTitle.setTextColor(getResources().getColor(R.color.red));
Как найти виды внутри макета включения?