首頁 收藏 QQ群
 網(wǎng)站導(dǎo)航

ZNDS智能電視網(wǎng) 推薦當(dāng)貝市場

TV應(yīng)用下載 / 資源分享區(qū)

軟件下載 | 游戲 | 討論 | 電視計算器

綜合交流 / 評測 / 活動區(qū)

交流區(qū) | 測硬件 | 網(wǎng)站活動 | Z幣中心

新手入門 / 進(jìn)階 / 社區(qū)互助

新手 | 你問我答 | 免費(fèi)刷機(jī)救磚 | ROM固件

查看: 11212|回復(fù): 0
上一主題 下一主題
[教程]

第四十四講:用戶界面 View(十一)

[復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
樓主
發(fā)表于 2013-8-28 16:27 | 只看該作者 回帖獎勵 |倒序?yàn)g覽 |閱讀模式
>
本講內(nèi)容:標(biāo)簽頁的實(shí)現(xiàn) TabHost TabWidget TabActivity
使用Tab標(biāo)簽頁控件,可以在同一個空間里放置更多內(nèi)容。譬如Android自帶的撥號程序及通訊錄等,就使用了Tab標(biāo)簽功能:
     
下面我們用實(shí)例的方式來學(xué)習(xí)如何制作上面類似的標(biāo)簽效果,其實(shí)還是很簡單的。我同樣是把解釋寫到示例的注釋里了,注釋是我的理解并不準(zhǔn)確,方便你記憶而已。
1、新建一個項(xiàng)目 Lesson44_Tab ,Activity起名叫 MainActivity
2、編寫 main.xml 內(nèi)容如下,這次的形式和普通布局文件有所區(qū)別,請注意看寫法:
   
  1. <?xml version="1.0" encoding="utf-8"?>   
    <!-- 根元素是 TabHost ,我們這個文件要和TabActivity配合使用,在TabActivity的源代碼里寫死了要找的Id是android.R.id.tabhost,   
            因此這里的ID也要定死成TabHost 的ID 是定死的 "@android:id/tabhost" 下面的類似,不再解釋。 -->   
    <tabhost android:layout_height="fill_parent" android:layout_width="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost">   
       
            <!-- TabWidget 就是標(biāo)簽選項(xiàng)卡的頭部部分,注意ID的寫法 -->   
            <tabwidget android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@android:id/tabs">   
            </tabwidget>   
            <!-- FrameLayout 就是標(biāo)簽的內(nèi)容顯示部分,注意ID的寫法,還要注意我們做了個上部空白設(shè)定 android:paddingTop="65dp",是為了不讓內(nèi)容和標(biāo)簽重疊 -->   
            <framelayout android:layout_height="fill_parent" android:layout_width="fill_parent" android:id="@android:id/tabcontent" android:paddingtop="65dp">   
                    <!-- LinearLayout 是一個標(biāo)簽里的內(nèi)容,程序根據(jù)你定義的ID來把他們放在不同的標(biāo)簽下面 -->   
    <linearlayout android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/linearLayout1">   
                            <textview android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/textView1" android:text="標(biāo)簽1中的內(nèi)容">   
                            </textview>   
                    </linearlayout>   
                    <!-- LinearLayout 是另一個標(biāo)簽里的內(nèi)容-->   
    <linearlayout android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/linearLayout2">   
                            <textview android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/textView2" android:text="標(biāo)簽2中的內(nèi)容">   
                            </textview>   
                    </linearlayout>   
            </framelayout>   
    </tabhost>
復(fù)制代碼
3、編寫 MainActivity,請注意它繼承的是 TabActivity 類,解釋在代碼里:
   
  1. package basic.android.lesson44;   
       
    import android.app.TabActivity;   
    import android.os.Bundle;   
    import android.widget.TabHost;   
       
    public class MainActivity extends TabActivity {   
       
            @Override   
            public void onCreate(Bundle savedInstanceState) {   
                    super.onCreate(savedInstanceState);   
                    setContentView(R.layout.main);   
       
                    // tabHost是一個標(biāo)簽容器   
                    TabHost tabHost = this.getTabHost();   
       
                    // 每一個TabSpec對象就是個標(biāo)簽   
                    // TabSpec.setIndicator()方法是設(shè)置標(biāo)簽顯示樣式   
                    // TabSpec.setContent()方法顯示標(biāo)簽下方的內(nèi)容顯示   
       
                    //定義第一個標(biāo)簽   
                    tabHost.addTab(tabHost.newTabSpec("OneTab")   
                                    .setIndicator("OneTab", getResources().getDrawable(android.R.drawable.star_on))   
                                    .setContent(R.id.linearLayout1));   
       
                    //定義第二個標(biāo)簽   
                    tabHost.addTab(tabHost.newTabSpec("TwoTab")   
                                    .setIndicator("TwoTab", getResources().getDrawable(android.R.drawable.star_off))   
                                    .setContent(R.id.linearLayout2));   
       
            }   
    }
復(fù)制代碼
   4、編譯程序,運(yùn)行代碼,查看結(jié)果:     
點(diǎn)擊 TwoTab ,標(biāo)簽切換:   
     
關(guān)于注釋你最好先看一遍,等代碼跑起來后再看一遍。好了,本講就到這里。   
</div

上一篇:Android 事件處理【一份教程一份愛】
下一篇:安卓4.0開發(fā)平臺搭建 圖文詳細(xì) 教程
您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規(guī)則

Archiver|新帖|標(biāo)簽|軟件|Sitemap|ZNDS智能電視網(wǎng) ( 蘇ICP備2023012627號 )

網(wǎng)絡(luò)信息服務(wù)信用承諾書 | 增值電信業(yè)務(wù)經(jīng)營許可證:蘇B2-20221768 丨 蘇公網(wǎng)安備 32011402011373號

GMT+8, 2024-11-6 23:32 , Processed in 0.060632 second(s), 13 queries , Redis On.

Powered by Discuz!

監(jiān)督舉報:report#znds.com (請將#替換為@)

© 2007-2024 ZNDS.Com

快速回復(fù) 返回頂部 返回列表