设置 ActionBar 上所选项目的标题
Posted
技术标签:
【中文标题】设置 ActionBar 上所选项目的标题【英文标题】:Setting The title of the Item Selected on ActionBar 【发布时间】:2016-03-29 06:42:29 【问题描述】:您好,我一直在尝试使 ActionBar 的标题显示我在 navigationDrawer 中选择的标题。我附上了代码,请帮助我。 我现在是这样的: - 我有一个导航抽屉有某些标题进口,画廊。 问题是: - 当我选择导航抽屉的一项时,它不会在操作栏上显示标题名称,这使我的应用看起来不完整。 我需要的是: - 让项目名称在我选择的 ActionBar/ToolBar 上可见。 这是我的 MainActivity 代码:
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener
NavigationView navigationView;
Toolbar toolbar;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//set the fragment initially
MainFragment fragment = new MainFragment();
android.support.v4.app.FragmentTransaction fragmentTransaction =
getSupportFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.Fragment_Layout,fragment);
fragmentTransaction.commit();
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View view)
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
);
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.setDrawerListener(toggle);
toggle.syncState();
navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
@Override
public void onBackPressed()
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START))
drawer.closeDrawer(GravityCompat.START);
else
super.onBackPressed();
@Override
public boolean onCreateOptionsMenu(Menu menu)
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
@Override
public boolean onOptionsItemSelected(MenuItem item)
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings)
return true;
return super.onOptionsItemSelected(item);
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item)
// Handle navigation view item clicks here.
int id = item.getItemId();
if (id == R.id.nav_camera)
// Handle the camera action
MainFragment fragment = new MainFragment();
android.support.v4.app.FragmentTransaction fragmentTransaction =
getSupportFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.Fragment_Layout, fragment);
fragmentTransaction.commit();
else if (id == R.id.nav_gallery)
SecondFragment fragment = new SecondFragment();
android.support.v4.app.FragmentTransaction fragmentTransaction =
getSupportFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.Fragment_Layout,fragment);
fragmentTransaction.commit();
else if (id == R.id.nav_slideshow)
else if (id == R.id.nav_manage)
else if (id == R.id.nav_share)
else if (id == R.id.nav_send)
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
图像是在导航抽屉中选择 ttle 之前和之后。 前: enter image description here
选择画廊后,您可以看到页面上的第二个按钮出现在 ActionBar 中的按钮仍然显示欢迎。请帮助我。 后: enter image description here
先谢谢你了。
【问题讨论】:
他们将导航抽屉布局更改为使用Toolbar
,而不是之前的ActionBar
。阅读更多
Setting Action Bar title and subtitle的可能重复
【参考方案1】:
在工具栏内添加文本视图
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/toolbar_top"
android:layout_
android:layout_
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize"
android:theme="@android:style/Theme.Light">
<TextView
android:id="@+id/toolbar_title"
android:layout_
android:layout_
android:layout_gravity="center"
android:text="Toolbar Title"
android:textColor="@color/textColorWhite"
android:textSize="16sp" />
</android.support.v7.widget.Toolbar>
禁用工具栏的标题。
getSupportActionBar().setDisplayShowTitleEnabled(false);
设置自定义文本视图的标题
((TextView) toolbar.findViewById(R.id.toolbar_title)).setText(title);
【讨论】:
【参考方案2】:尝试:
ActionBar actionBar = getActivity().getSupportActionBar();
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setTitle("Narnia");
您可以创建一个方法,然后在 onNavigationItemSelected 中使用您想要的标题调用该方法。
【讨论】:
以上是关于设置 ActionBar 上所选项目的标题的主要内容,如果未能解决你的问题,请参考以下文章
如何设置 ActionBar 样式,选定选项卡上的选项卡背景