我想在Andorid中创建自定义标签。我搜索了很多,但没有找到任何相关的东西。我想创建这样的标签
我的代码产生了这个
我的代码看起来像这样
CustomTabActivity.java
public class CustomTabActivity extends TabActivity {
private TabHost mTabHost;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mTabHost = getTabHost();
mTabHost.setup();
Intent intentAndroid1 = new Intent().setClass(this,Tab1.class);
TabSpec tab1 = mTabHost
.newTabSpec("Android")
.setIndicator("",getResources().getDrawable(R.drawable.icon))
.setContent(intentAndroid1);
Intent intentAndroid2 = new Intent().setClass(this,Tab2.class);
TabSpec tab2 = mTabHost
.newTabSpec("Android")
.setIndicator("",getResources().getDrawable(R.drawable.icon))
.setContent(intentAndroid2);
mTabHost.addTab(tab1);
mTabHost.addTab(tab2);
}
}
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</FrameLayout>
</LinearLayout>
</TabHost>
</LinearLayout>
答案 0 :(得分:1)
如果您只想使用标签名称而不是图标/图片作为标签,只需更改.setIndicator()
的{{1}}方法。
这样的事情:
TabSpec
产生类似这样的东西(Android 4.3):
有关Intent intentAndroid1 = new Intent().setClass(this, Tab1.class);
TabHost.TabSpec tab1 = mTabHost
.newTabSpec("Android")
.setIndicator("Rankings")
.setContent(intentAndroid1);
Intent intentAndroid2 = new Intent().setClass(this, Tab2.class);
TabHost.TabSpec tab2 = mTabHost
.newTabSpec("Android")
.setIndicator("My Team")
.setContent(intentAndroid2);
的详细信息,请查看Android开发人员中心文档:http://developer.android.com/reference/android/widget/TabHost.TabSpec.html