替换ActionBar后,在工具栏中查找标题文本视图

时间:2016-06-15 11:44:39

标签: android android-appbarlayout android-titlebar

素材滚动活动可以在协调器布局中显示标题。

enter image description here

我们可以通过actionbar替换toolbar来获取它:

 Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
 setSupportActionBar(toolbar);

和xml:

  <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/toolbar_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:popupTheme="@style/AppTheme.PopupOverlay"/>
    </android.support.design.widget.CollapsingToolbarLayout>

如果我在工具栏中添加textView,我发现它没有默认缩放效果。

我的问题是:我怎样才能找到这个标题textview以便我可以修改它(更改字体/颜色/ ...)?

0 个答案:

没有答案