本文主要是介绍Android 选项卡的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
废话不说,代码如下:
首先创建一个xml(TabHost)文件。
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent" >tab1与选项卡tab1对应
<LinearLayout android:id="@+id/tab1" android:orientation="vertical" android:layout_width="match_parent"android:layout_height="match_parent"> <TextView android:layout_width="fill_parent"android:layout_height="wrap_content"android:text="我是tab1"/></LinearLayout> tab2与选项卡tab2对应
<LinearLayoutandroid:id="@+id/tab2" android:orientation="vertical"android:layout_width="match_parent"android:layout_height="match_parent"><TextView android:layout_width="fill_parent"android:layout_height="wrap_content"android:text="我是tab2"/></LinearLayout></TabHost>
import android.app.TabActivity;
import android.content.res.Resources;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.widget.TabHost;
import android.widget.TabHost.TabSpec;public class MainActivity extends TabActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);LayoutInflater layoutInflater = LayoutInflater.from(this); Resources res = getResources();TabHost host = getTabHost();TabSpec spec;layoutInflater.inflate(R.layout.tab,host.getTabContentView(),true );spec=host.newTabSpec("1").setIndicator("tab1", //选项卡的名称 res.getDrawable(android.R.drawable.star_big_on))//选项卡的ICON,androdi.R 是android自带的 .setContent(R.id.tab1);//设置点击选项卡所显示的内容host.addTab(spec); //添加选项卡spec=host.newTabSpec("2").setIndicator("tab2", //选项卡的名称res.getDrawable(android.R.drawable.star_big_on))//选项卡的ICON,androdi.R 是android自带的 .setContent(R.id.tab2); //设置点击选项卡所显示的内容host.addTab(spec); //添加选项卡host.setCurrentTab(0); //用来设置哪个选项卡是默认选项卡 从0开始}
}
这篇关于Android 选项卡的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!