日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

android使用tabhost实现导航

發布時間:2025/3/14 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android使用tabhost实现导航 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

參考

?

http://blog.csdn.net/xixinyan/article/details/6771341

http://blog.sina.com.cn/s/blog_6b04c8eb0101a2ej.html

xml

<TabHost xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout_height="fill_parent"><LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"android:layout_weight="1"> <!-- 將導航欄tab放置底部 --><FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" /> <TabWidget android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="wrap_content"android:background="@color/chocolate" android:textColor = "@color/darkgray"android:layout_marginBottom="-3dip" /> <!-- "去掉最下方的亮色條" --></LinearLayout> </TabHost>

?

java

public class MainTab extends TabActivity {ActionBar actionBar;boolean isExit;@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.mainintent);actionBar = getActionBar();actionBar.hide();// 獲取該Activity里面的TabHost組件TabHost tabHost = getTabHost();// 使用Intent添加第一個Tab頁面tabHost.addTab(tabHost.newTabSpec("tab1").setIndicator("AA") // ,getResources().getDrawable(R.drawable.ic_launcher)).setContent(new Intent(this, AA.class)));// 使用Intent添加第二個Tab頁面tabHost.addTab(tabHost.newTabSpec("tab2").setIndicator("BB").setContent(new Intent(this, BB.class))); }// 設置TabHost的背景顏色tabHost.setBackgroundColor(Color.argb(150, 22, 70, 150));// 設置TabHost的背景圖片資源// mTabHost.setBackgroundResource(R.drawable.bg0);// 設置當前顯示哪一個標簽tabHost.setCurrentTab(0);

?

?

轉載于:https://www.cnblogs.com/sudawei/p/3435001.html

總結

以上是生活随笔為你收集整理的android使用tabhost实现导航的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。