[Android]Tab

來源:互聯網
上載者:User

標籤:android

<?xml version="1.0" encoding="utf-8"?><TabHost xmlns:android="http://schemas.android.com/apk/res/android"    android:id="@android:id/tabhost"    android:layout_alignParentBottom="true"    android:layout_width="fill_parent"    android:layout_height="fill_parent" >    <LinearLayout        android:layout_width="fill_parent"        android:layout_height="fill_parent"        android:orientation="vertical" >        <FrameLayout            android:id="@android:id/tabcontent"            android:layout_width="fill_parent"            android:layout_height="0.0dip"            android:layout_weight="1.0" />        <TabWidget     android:id="@android:id/tabs"    android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:layout_weight="0.0"    android:visibility="gone"/>     <RadioGroup        android:id="@+id/radioGroup"            android:layout_width="fill_parent"            android:layout_height="60dp"            android:layout_gravity="bottom"            android:gravity="left"            android:background="@drawable/bg_bottom_tab"            android:orientation="horizontal" >           <RadioButton            android:id="@+id/homepage"                style="@style/bottom_tab_style"                android:drawableTop="@drawable/bg_tab_homepage"                android:tag="HomePage"                android:text="@string/HomePage" />          <RadioButton            android:id="@+id/sell"                style="@style/bottom_tab_style"               android:drawableTop="@drawable/bg_tab_homepage"                android:tag="Sell"                android:text="@string/Sell" />          <RadioButton            android:id="@+id/buy"                style="@style/bottom_tab_style"                android:drawableTop="@drawable/bg_tab_homepage"                android:tag="Buy"                android:text="@string/Buy" />          <RadioButton            android:id="@+id/donate"                style="@style/bottom_tab_style"                android:drawableTop="@drawable/bg_tab_homepage"               android:tag="Donate"               android:text="@string/Donate" />         <RadioButton            android:id="@+id/more"                style="@style/bottom_tab_style"                android:drawableTop="@drawable/bg_tab_homepage"                android:tag="More"                android:text="@string/More" />   </RadioGroup>    </LinearLayout></TabHost>

styles.xml中配置

<style name="bottom_tab_style">        <item name="android:textSize">15.0dip</item>        <item name="android:textColor">#ffffffff</item>        <item name="android:gravity">center_horizontal</item>        <item name="android:background">@drawable/selector_radiobutton</item>        <item name="android:paddingTop">8.0dip</item>        <item name="android:button">@null</item>        <item name="android:layout_weight">1.0</item>        <item name="android:drawablePadding">5.0dip</item>

selector_radiobutton.xml

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android">    <item android:drawable="@drawable/bg_tab_radiobutton_s" android:state_enabled="true" android:state_focused="true" android:state_pressed="false"/>    <item android:drawable="@drawable/bg_tab_radiobutton_d" android:state_enabled="true" android:state_pressed="true"/>    <item android:drawable="@drawable/bg_tab_radiobutton_d" android:state_enabled="true" android:state_checked="true" /></selector>














[Android]Tab

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.