作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我需要向 FragmentTabHost
添加一个按钮。如何构建这样的东西?
FragmentTabHost tabHost = (FragmentTabHost) view.findViewById(R.id.tab_host);
tabHost.setup(getActivity(), getActivity().getSupportFragmentManager(),
R.id.tab_content);
tabHost.addTab(tabHost.newTabSpec("tab1").setIndicator("TAB 1"),
MatchStatisticsFragment.class, null);
tabHost.addTab(tabHost.newTabSpec("tab2").setIndicator("TAB 2"),
EventsListFragment.class, null);
// can I add right-align button there?
最佳答案
它是菜单按钮,仅显示图标
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/new_game"
android:icon="@drawable/icon"
android:title="@string/title"
android:showAsAction="always"/>
</menu>
关于android - 如何将按钮添加到 Fragment TabHost,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18937265/
我是一名优秀的程序员,十分优秀!