刷新ActionBar标题时遇到问题。该应用程序相当简单,目前只有一个活动: `
<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/AppTheme.AppBarOverlay">
<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>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_count_scrolling"/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fabReset"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_alert"
app:layout_anchor="@id/app_bar"
app:layout_anchorGravity="bottom|end"/>
</android.support.design.widget.CoordinatorLayout>
布局content_count_scrolling
仅包含内置NestedScrollView
的{{1}}。
我的情况是,当我在任何RecyclerView行中的RecyclerView
输入一个数字时,它会在数据模型中设置一个值,并重新计算总值(所有行的总和)。此总值应设置为EditText
。为此,我也使用RxBus。 MainActivity如下:
ActionBar.title
`
方法public class MainActivity extends AppCompatActivity {
// ....
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main_scrolling);
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
toolbar.setTitle("");
mRxBus = getRxBusSingleton();
// ....
}
}
public void refreshActionBarTitle() {
String total = Data.getTotal();
Timber.d("Refresh bar title with value="+total);
toolbar.setTitle("");
setSupportActionBar(toolbar);
toolbar.setTitle("Title "+total);
// testes also with:
// getSupportActionBar().setTitle("Title "+total);
Timber.d("Title after refresh: " + getSupportActionBar().getTitle());
}
由RxBus触发。触发方法后,还会设置refreshActionBarTitle()
的标题(使用日志和调试器进行检查)。问题是,ActionBar没有失效并重新绘制。这只在旋转屏幕后才能完成,这很明显。
所以,请帮我正确无效工具栏。我还必须注意,这个事件将在ActionBar
发生变化后触发,不仅仅是在改变了焦点之后,所以我无法使例如无效。整个屏幕。
我也检查了Toolbar (SupportActionBar) title changes to app name on orientation change的建议,但他们没有帮助我。
答案 0 :(得分:16)
固定。我应该使用CollapsingToolbarLayout.setTitle()
方法。这个工作