获取折叠工具栏布局的标题文本视图

时间:2016-07-07 08:17:40

标签: android textview toolbar android-collapsingtoolbarlayout

我有$(document).ready(function(){ $("#Color").change(function () { $(this).find("option:selected").each(function(){ if($(this).attr("value")=="redd"){ $(".box").not(".redd").hide().find('input,select').removeAttr('required'); $(".redd").show(); } else if($(this).attr("value")=="greenn"){ $(".box").not(".greenn").hide().find('input,select').removeAttr('required'); $(".greenn").show(); } else{ $(".box").hide(); } }); }).change(); });,我需要对标题collapsingToolbarLayout进行一些额外的设置。

问题:如何获取对该TextView的引用?

enter image description here

TextView

修改 只需将<android.support.design.widget.CoordinatorLayout 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" android:id="@+id/review_coordinator_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" tools:context="com.stack.overflow.reviewmaschine.ReviewMaschineActivity" tools:ignore="MergeRootFrame"> <android.support.design.widget.AppBarLayout android:id="@+id/app_bar" android:layout_width="match_parent" android:layout_height="@dimen/app_bar_height" android:fitsSystemWindows="true" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> <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" app:toolbarId="@+id/toolbar"> <android.support.v7.widget.Toolbar android:id="@+id/detail_toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" app:layout_collapseMode="pin" app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> </android.support.design.widget.CollapsingToolbarLayout> </android.support.design.widget.AppBarLayout> <FrameLayout android:id="@+id/item_detail_container" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior = "@string/appbar_scrolling_view_behavior" /> <com.mego.smscloud.reviewmaschine.SaveFloatingActionButton android:id="@+id/review_fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="bottom|end" android:backgroundTint="@color/colorPrimary" android:layout_margin="@dimen/fab_margin" android:src="@drawable/ic_floppy_white_48dp" app:borderWidth="0dp" app:elevation="@dimen/fab_elevation" app:rippleColor="#00ffff"/> </android.support.design.widget.CoordinatorLayout> 添加到TextView,就不会将其与Toolbar标题相同的行为进行整合 enter image description here

2 个答案:

答案 0 :(得分:3)

Toolbar班级根据需要创建其子View,以便TextView在您Toolbar设置标题之前不会存在}。完成后,有几个选项。

您可以使用ToolbarView方法迭代ViewGroup#getChildCount()的孩子getChildAt() - 寻找TextView。如果TextView中没有其他Toolbar,则标题将是唯一的标题。如果还有其他人,则应根据您设置的标题检查文本。

另一种选择是使用反射来获取标题TextView字段。例如:

private TextView getTitleTextView(Toolbar toolbar) {
    try {
        Class<?> toolbarClass = Toolbar.class;
        Field titleTextViewField = toolbarClass.getDeclaredField("mTitleTextView");
        titleTextViewField.setAccessible(true);
        TextView titleTextView = (TextView) titleTextViewField.get(toolbar);

        return titleTextView;
    }
    catch (NoSuchFieldException | IllegalAccessException e) {
        e.printStackTrace();
    }

    return null;
}

当然,在使用此方法返回之前,您应该进行空检查。

答案 1 :(得分:0)

这是Toolbar的默认标题如果您想更改标题,请致电:

getSupportActionBar().setTitle(String title);

但这只会改变文字。

但是,如果您想进行更多修改,请将自己的TextView添加到Toolbar。像那样:

<android.support.v7.widget.Toolbar
            android:id="@+id/detail_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

    <TextView
          android:id="@+id/title"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"/>

</android.support.v7.widget.Toolbar>

然后只需找到你的标题Activity

TextView title = (TextView) findViewById(R.id.title);