我想在扩展 FragmentActivity 的 Activity 上设置工具栏。我知道对于使用setSuppoertActionBar(toolbar)
方法,我们扩展了AppCompatActivity
而不是FragmentActivity
,但我覆盖了onMenuItemSelected(int featureId, MenuItem item)
方法,该方法在AppCompatActivity
中是最终的,并且final方法无法覆盖。所以我只能扩展FragmentActivity
。
这是我的代码:
public class MainActivity extends FragmentActivity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar)findViewById(R.id.toolbar);
setSupportActionBar(toolbar); -> error is here
}
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
// Inflate the menu
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onMenuItemSelected(int featureId, MenuItem item) {
switch(item.getItemId()){
case R.id.action_search:
onSearchRequested();
break;
}
return super.onMenuItemSelected(featureId, item);
}
我看到了许多与该问题有关的答案,但是每个人都说扩展了
AppCompatActivity
而不是FragmentActivity
,但是我想设置工具栏以及覆盖onMenuItemSelected(int featureId, MenuItem item)
方法。我该怎么办,请帮忙。
最佳答案
当您使用NavigationDrawer
时,这东西很好
使用此:-
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayShowTitleEnabled(false);
,然后根据
onNavigationItemSelected
中具有不同标题的不同片段设置工具栏标题:-@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
sfm = getSupportFragmentManager();
Fragment fragment = new Fragment();
int id = item.getItemId();
if (id == R.id.nav_id) {
fragment = new YourFragment();
toolbar.setTitle("SET TOOLBAR NAME");
}else if (id == R.id.nav_id2) {
fragment = new YourFragment();
toolbar.setTitle("SET TOOLBAR NAME");
}
对于单个片段,请首先自定义您的
style.xml
,如下所示:-<style name="YourStyleName" parent="Theme.AppCompat.Light.DarkActionBar">
// ToDo as you want to do or as per your requirement
</style>
,然后应用到您的自定义
toolbar
中:-<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/YourStyleName" >
// ...........
</android.support.v7.widget.Toolbar>
关于android - 如何在FragmentActivity上设置工具栏?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34870245/