Android中怎么實(shí)現(xiàn)選項(xiàng)卡功能

本篇文章為大家展示了Android中怎么實(shí)現(xiàn)選項(xiàng)卡功能,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

贛州ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!

首先創(chuàng)建Android工程命名自己的Activity為HelloTabWidget

在main.xml或者自己定義的*.xml文件中創(chuàng)建一個TabHost,需要兩個元素TabWidget和FrameLayout 通常會把這兩個元素放到LinearLayout中。FrameLayout作為改變內(nèi)容content用的。
注意:TabWidget和FrameLayout 有不同的ID命名空間android:id="@android:id/idnames",這個是必須的因此TabHost才能自動找到它,Activity需要繼承TabActivity。

Android選項(xiàng)卡Xml代碼

  1. < ?xml version="1.0" encoding="utf-8"?>   

  2. < TabHost xmlns:android=
    "http://schemas.android.com/apk/res/android"   

  3. android:id="@android:id/tabhost"   

  4. android:layout_width="fill_parent"   

  5. android:layout_height="fill_parent">   

  6. < LinearLayout   

  7. android:orientation="vertical"   

  8. android:layout_width="fill_parent"   

  9. android:layout_height="fill_parent">   

  10. < TabWidget   

  11. android:id="@android:id/tabs"   

  12. android:layout_width="fill_parent"   

  13. android:layout_height="wrap_content" />   

  14. < FrameLayout   

  15. android:id="@android:id/tabcontent"   

  16. android:layout_width="fill_parent"   

  17. android:layout_height="fill_parent">   

  18. < TextView   

  19. android:id="@+id/textview1"   

  20. android:layout_width="fill_parent"   

  21. android:layout_height="fill_parent"   

  22. android:text="this is a tab" />   

  23. < TextView   

  24. android:id="@+id/textview2"   

  25. android:layout_width="fill_parent"   

  26. android:layout_height="fill_parent"   

  27. android:text="this is another tab" />   

  28. < TextView   

  29. android:id="@+id/textview3"   

  30. android:layout_width="fill_parent"   

  31. android:layout_height="fill_parent"   

  32. android:text="this is a third tab" />   

  33. < /FrameLayout>   

  34. < /LinearLayout>   

  35. < /TabHost>   

  36.  

  37. < ?xml version="1.0" encoding="utf-8"?> 

  38. < TabHost xmlns:android=
    "http://schemas.android.com/apk/res/android" 

  39. android:id="@android:id/tabhost" 

  40. android:layout_width="fill_parent" 

  41. android:layout_height="fill_parent"> 

  42. < LinearLayout 

  43. android:orientation="vertical" 

  44. android:layout_width="fill_parent" 

  45. android:layout_height="fill_parent"> 

  46. < TabWidget 

  47. android:id="@android:id/tabs" 

  48. android:layout_width="fill_parent" 

  49. android:layout_height="wrap_content" /> 

  50. < FrameLayout 

  51. android:id="@android:id/tabcontent" 

  52. android:layout_width="fill_parent" 

  53. android:layout_height="fill_parent"> 

  54. < TextView   

  55. android:id="@+id/textview1" 

  56. android:layout_width="fill_parent" 

  57. android:layout_height="fill_parent"   

  58. android:text="this is a tab" /> 

  59. < TextView   

  60. android:id="@+id/textview2" 

  61. android:layout_width="fill_parent" 

  62. android:layout_height="fill_parent"   

  63. android:text="this is another tab" /> 

  64. < TextView   

  65. android:id="@+id/textview3" 

  66. android:layout_width="fill_parent" 

  67. android:layout_height="fill_parent"   

  68. android:text="this is a third tab" /> 

  69. < /FrameLayout> 

  70. < /LinearLayout> 

  71. < /TabHost>  

Activity需要繼承TabActivity

Android選項(xiàng)卡Java代碼

public class HelloTabWidget extends TabActivity   public class HelloTabWidget extends TabActivity

Android選項(xiàng)卡Java代碼

  1. public void onCreate(Bundle savedInstanceState) {   

  2. super.onCreate(savedInstanceState);   

  3. setContentView(R.layout.main);   

  4. mTabHost = getTabHost();   

  5. mTabHost.addTab(mTabHost.newTabSpec("tab_test1").
    setIndicator("TAB 1").setContent(R.id.textview1));   

  6. mTabHost.addTab(mTabHost.newTabSpec("tab_test2").
    setIndicator("TAB 2").setContent(R.id.textview2));   

  7. mTabHost.addTab(mTabHost.newTabSpec("tab_test3").
    setIndicator("TAB 3").setContent(R.id.textview3));   

  8. mTabHost.setCurrentTab(0);   

  9. }  

上述內(nèi)容就是Android中怎么實(shí)現(xiàn)選項(xiàng)卡功能,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

分享文章:Android中怎么實(shí)現(xiàn)選項(xiàng)卡功能
新聞來源:http://bm7419.com/article0/jjcsio.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供服務(wù)器托管、網(wǎng)站營銷、企業(yè)網(wǎng)站制作、用戶體驗(yàn)商城網(wǎng)站、網(wǎng)站維護(hù)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都做網(wǎng)站