我有一个包含图像的折叠工具栏布局,在折叠时显示工具栏标题。我需要更改工具栏标题字体,所以我在工具栏布局中添加了一个textview。现在,每当我折叠工具栏时,我都会反复生成以下错误。
08-12 13:14:19.604 2263-2263/com.panoroma.admin W/View: requestLayout() improperly called by android.support.design.widget.CollapsingToolbarLayout{2d353cd6 V.ED.... ........ 0,0-1080,390 #7f0c0070 app:id/collapsing_toolbar} during second layout pass: posting in next frame
08-12 13:14:19.604 2263-2263/com.panoroma.admin W/View: requestLayout() improperly called by android.support.v7.widget.AppCompatTextView{1bb84b57 V.ED.... ........ 168,48-407,119 #7f0c0073 app:id/toolbar_title} during second layout pass: posting in next frame
我的布局......
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed|exitUntilCollapsed">
<ImageView
android:id="@+id/header"
android:layout_width="100dp"
android:layout_height="100dp"
android:adjustViewBounds="true"
android:layout_gravity="center"
android:scaleType="centerCrop"
android:layout_marginTop="15dp"
android:layout_marginBottom="15dp"
android:background="@drawable/dashboard80"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.5" />
<android.support.v7.widget.Toolbar
android:id="@+id/da_toolbar"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
app:layout_collapseMode="pin"
android:layout_height="?attr/actionBarSize">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textColor="?attr/colorAccent"
android:id="@+id/toolbar_title"/>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/rel_dash_icon"
app:layout_behavior="@string/appbar_scrolling_view_behavior" >
.........................
</ScrollView>
</android.support.design.widget.CoordinatorLayout>
java file ..
Typeface ubuntuC = Typeface.createFromAsset(getAssets(), "ubuntuC.ttf");
Toolbar toolbar = (Toolbar) findViewById(R.id.da_toolbar);
toolbar.setTitle("");
setSupportActionBar(toolbar);
toolbar_title = (TextView)toolbar.findViewById(R.id.toolbar_title);
toolbar_title.setTypeface(ubuntuC);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
getSupportActionBar().setHomeAsUpIndicator(getResources().getDrawable(R.drawable.abc_ic_ab_back_mtrl_am_alpha, null));
else
getSupportActionBar().setHomeAsUpIndicator(getResources().getDrawable(R.drawable.abc_ic_ab_back_mtrl_am_alpha));
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
final CollapsingToolbarLayout collapsingToolbarLayout = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
AppBarLayout appBarLayout = (AppBarLayout) findViewById(R.id.appbar);
appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
boolean isShow = false;
int scrollRange = -1;
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
if (scrollRange == -1) {
scrollRange = appBarLayout.getTotalScrollRange();
}
if (scrollRange + verticalOffset == 0) {
// collapsingToolbarLayout.setTitle("Dashboard");
toolbar_title.setText("Dashboard");
isShow = true;
} else if(isShow) {
// collapsingToolbarLayout.setTitle("");
toolbar_title.setText("");
isShow = false;
}
}
});
我只想要一个带有中心图像的工具栏,在折叠时会显示标题。标题将具有自定义字体。现在,有更好的方法吗?
答案 0 :(得分:12)
以下代码对我有用
在post
Runnable
AppBarLayout
mAppBar.addOnOffsetChangedListener(new AppBarStateChangeListener() {
@Override
public void onStateChanged(AppBarLayout appBarLayout, final int state, int done) {
mAppBar.post(new Runnable() {
@Override
public void run() {
if (state == COLLAPSED) {
mToolBarTitle.setText(model.getTitle());
} else if (state == EXPANDED || state == IDLE) {
mToolBarTitle.setText("");
}
}
});
}
});
答案 1 :(得分:3)
onOffsetChanged()
被调用了很多次,因为你要求布局作为 toolbar_title.setText("Dashboard");
的一部分,因此安卓会发出警告。您应该做的是,使用布尔标志并在满足条件时仅调用一次或检查工具栏文本视图的VISIBILITY标志,如下所示。
在CollapsingLayout
下的工具栏布局中添加textview < 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/ThemeOverlay.AppCompat.Light">
<TextView
android:id="@+id/toolbar_title"
style="@style/Toolbar.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
android:layout_gravity="center" />
</android.support.v7.widget.Toolbar>
在 OnOffsetChangedListener()
内的活动或片段类中,使用check修改下面的内容。这将停止警告。
appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
if (verticalOffset == toolbar.getHeight() - collapsingToolbarLayout.getHeight()) {
if (textView.getVisibility() != View.VISIBLE) {
textView.setVisibility(View.VISIBLE);
textView.setText(title); // show toolbar title
}
} else {
if (textView.getVisibility() != View.GONE) {
textView.setVisibility(View.GONE); // hide title bar
}
}
}
});
}
答案 2 :(得分:2)
我的onOffsetChangedListener遇到了同样的问题。要修复它,我必须将我的代码包装在UI线程上运行的runnable。 因此,您必须执行以下操作:
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
getActivity().runOnUiThread(new Runnable() {
@Override
public void run() {
if (scrollRange == -1) {
scrollRange = appBarLayout.getTotalScrollRange();
}
if (scrollRange + verticalOffset == 0) {
collapsingToolbarLayout.setTitle("Dashboard");
toolbar_title.setText("Dashboard");
isShow = true;
} else if(isShow) {
collapsingToolbarLayout.setTitle(" ");
toolbar_title.setText(" ");
isShow = false;
}
}
});
请注意setTitle和setText中引号之间的空格。我相信你需要一个空间或它不会工作。另外,请确保您的xml中有
app:titleEnabled="false"
在您的CollapsingToolbarLayout上。
希望解决问题:)
答案 3 :(得分:2)
我遇到了同样的问题,这个页面给了我一个提示:here
我删除了name
并在collapsingToolbarLayout.setTitle("Dashboard"); collapsingToolbarLayout.setTitle(" ");
中创建了两个样式:
styles.xml
并在
中使用它们<style name="CustomCollapsingCollapsed">
<item name="android:textColor">@color/colorText</item>
</style>
<style name="CustomCollapsingExpanded">
<item name="android:textColor">@color/transparent</item>
</style>
不再记录了......希望它有所帮助!
答案 4 :(得分:1)
您实际上可以为折叠和展开模式设置标题颜色,当工具栏折叠时,它将在两者之间转换。
在您的情况下,然后手动处理折叠/展开并设置标题,您可以将展开的标题颜色设置为透明,将折叠的标题颜色设置为您最初想要的颜色。
现在,当展开时,工具栏标题不可见,折叠后工具栏标题可见。
答案 5 :(得分:0)
在实现监听器onOffsetChanged时,我遇到了同样的问题。
在分配新值之前,我所做的基本上是一个标记。一旦分配了布局参数的特定值,就将其保存,然后在重新分配之前,将它们与旧值进行比较。
private ConstraintLayout.LayoutParams params;
private float horizontalBias = 0;
private float verticalBias = 0;
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
params = (ConstraintLayout.LayoutParams) mOrderPictureDetail.getLayoutParams();
...
if (params.horizontalBias != horizontalBias && params.verticalBias != verticalBias) {
horizontalBias = params.horizontalBias;
verticalBias = params.verticalBias;
mOrderPictureDetail.setLayoutParams(params);
}
}
GL
答案 6 :(得分:-2)
appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
boolean isShow = false;
int scrollRange = -1;
@Override
public void onOffsetChanged(final AppBarLayout appBarLayout, final int verticalOffset) {
if (scrollRange == -1) {
scrollRange = appBarLayout.getTotalScrollRange();
}
if (scrollRange + verticalOffset == 0) {
if (mToolbarTitle.getVisibility() == View.GONE) {
mToolbarTitle.setVisibility(View.VISIBLE);
mCollapsingToolbarLayout.setTitle("昵称");
mToolbarTitle.setText("昵称");
}
isShow = true;
} else if (isShow) {
mToolbarTitle.setVisibility(View.GONE);
isShow = false;
}
}
});
希望解决问题