网站地图    收藏   

主页 > 后端 > 微信开发 >

Android 微信样式的界面切换 - 微信公众平台开发

来源:自学PHP网    时间:2015-04-14 12:58 作者: 阅读:

[导读] 1 RadioGroup 2 android:id= @+id main_tab_RadioGroup 3 android:layout_width= match_parent 4 android:layout_height= wrap_...

    <RadioGroup
        android:id="@+id/main_tab_RadioGroup"
       android:layout_width="match_parent"
      android:layout_height="wrap_content"
          android:layout_gravity="bottom"
          android:background="@drawable/toolbar_bkg"
          android:gravity="center_vertical"
        android:orientation="horizontal" >
  
        <RadioButton
             android:id="@+id/model1"
             style="@style/tab"
             android:checked="true"
             android:drawableTop="@drawable/model1"
             android:text="@string/model1"/>"
 
         <RadioButton
             android:id="@+id/model2"
             style="@style/tab"
             android:drawableTop="@drawable/model2"
             android:text="@string/model2" />
 
         <RadioButton
             android:id="@+id/model3"
             style="@style/tab"
             android:drawableTop="@drawable/model3"
             android:text="@string/model3" />
     </RadioGroup>
tab样式如下:

          <style name="tab">
          <item name="android:layout_width">match_parent</item>
          <item name="android:layout_height">match_parent</item>
          <item name="android:textSize">12dp</item>
          <item name="android:layout_weight">1.0</item>
         <item name="android:button">@null</item>
          <item name="android:layout_gravity">center_horizontal</item>
          <item name="android:gravity">center_horizontal</item>
          <item name="android:paddingTop">2dp</item>
         <item name="android:singleLine">true</item>
         <item name="android:textColor">@drawable/textcolor</item>
     </style>
model1的样式如下:

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

最终的样式如下:

\

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论