你的位置:首页 > 软件开发 > 操作系统 > Android TabHost使用

Android TabHost使用

发布时间:2016-04-06 16:00:17
TabHost是Android中自带的选项卡控件,效果图如下:主布局文件<RelativeLayout "http://schemas.android.com/apk/res/android" ="http://schemas.android ...

Android TabHost使用

TabHost是Android中自带的选项卡控件,效果图如下:

Android TabHost使用

主布局文件

<RelativeLayout "http://schemas.android.com/apk/res/android"  ="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="match_parent"  tools:context=".MainActivity" >  <TabHost    android:id="@+id/tabhost"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:layout_alignParentLeft="true"    android:layout_alignParentTop="true" >    <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"        android:orientation="vertical" >        <LinearLayout          android:id="@+id/tab1"          android:layout_width="match_parent"          android:layout_height="match_parent"          android:orientation="vertical" >        </LinearLayout>        <LinearLayout          android:id="@+id/tab2"          android:layout_width="match_parent"          android:layout_height="match_parent"           android:orientation="vertical">        </LinearLayout>        <LinearLayout          android:id="@+id/tab3"          android:layout_width="match_parent"          android:layout_height="match_parent"          android:orientation="vertical" >        </LinearLayout>      </FrameLayout>    </LinearLayout>  </TabHost></RelativeLayout>

原标题:Android TabHost使用

关键词:Android

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录