最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android仿新浪微博分頁管理界面(3)

 更新時間:2016年11月21日 11:01:27   作者:DeMon輝  
這篇文章主要為大家詳細介紹了Android仿新浪微博分頁管理界面,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了Android仿新浪微博分頁管理界面的具體代碼,供大家參考,具體內(nèi)容如下

多個activity分頁管理,為了方便獲取上下文,采用繼承TabActivity的傳統(tǒng)方法。

大致思路:使用RadioGroup點擊觸發(fā)不同的選卡項,選卡項綁定不同的activiity,進而進行分頁管理。詳解見注解。

/**
 * 主Activity
 * 通過點擊RadioGroup下的RadioButton來切換不同界面
 * Created by D&LL on 2016/7/20.
 */
public class MainActivity extends TabActivity {
 //定義TabHost對象
 private TabHost tabHost;
 //定義RadioGroup對象
 private RadioGroup radioGroup;
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.tab_layout);
  initView();
  initData();
 }
 /**
  * 初始化組件
  */
 private void initView() {
  //實例化TabHost,得到TabHost對象
  tabHost = getTabHost();

  //得到Activity的個數(shù)
  int count = Constant.ConValue.mTabClassArray.length;

  for (int i = 0; i < count; i++) {
   //為每一個Tab按鈕設置圖標、文字和內(nèi)容
   TabSpec tabSpec = tabHost.newTabSpec(Constant.ConValue.mTextviewArray[i])
     .setIndicator(Constant.ConValue.mTextviewArray[i]).setContent(getTabItemIntent(i));
   //將Tab按鈕添加進Tab選項卡中
   tabHost.addTab(tabSpec);
  }
  //實例化RadioGroup
  radioGroup = (RadioGroup) findViewById(R.id.main_radiogroup);
 }
 /**
  * 初始化組件
  */
 private void initData() {
  // 給radioGroup設置監(jiān)聽事件
  radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() {
   public void onCheckedChanged(RadioGroup group, int checkedId) {
    switch (checkedId) {
     case R.id.RadioButton0:
      tabHost.setCurrentTabByTag(Constant.ConValue.mTextviewArray[0]);
      break;
     case R.id.RadioButton1:
      tabHost.setCurrentTabByTag(Constant.ConValue.mTextviewArray[1]);
      break;
     case R.id.RadioButton2:
      tabHost.setCurrentTabByTag(Constant.ConValue.mTextviewArray[2]);
      break;
     case R.id.RadioButton3:
      tabHost.setCurrentTabByTag(Constant.ConValue.mTextviewArray[3]);
      break;
     case R.id.RadioButton4:
      tabHost.setCurrentTabByTag(Constant.ConValue.mTextviewArray[4]);
      break;
    }
   }
  });
  ((RadioButton) radioGroup.getChildAt(0)).toggle();
 }
 /**
  * 給Tab選項卡設置內(nèi)容(每個內(nèi)容都是一個Activity)
  */
 private Intent getTabItemIntent(int index) {
  Intent intent = new Intent(this, Constant.ConValue.mTabClassArray[index]);
  return intent;
 }
}

MainActivity布局文件tab_layout.xml. TabHost布局,添加一個TabWidget用于顯示activity,下面是一個RadioGroup顯示切換activity的按鈕菜單。

<?xml version="1.0" encoding="utf-8"?>
<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: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/main_radiogroup"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:layout_gravity="bottom"
   android:background="@drawable/tab_widget_background"
   android:gravity="center_vertical"
   android:orientation="horizontal"
   android:padding="2dip">
   <RadioButton
    android:id="@+id/RadioButton0"
    style="@style/tab_item_background"
    android:drawableTop="@drawable/tab_home"
    android:text="主頁"
    android:textColor="#ffffff"/>
   <RadioButton
    android:id="@+id/RadioButton1"
    style="@style/tab_item_background"
    android:drawableTop="@drawable/tab_msg"
    android:text="評論"
    android:textColor="#ffffff"/>
   <RadioButton
    android:id="@+id/RadioButton2"
    style="@style/tab_item_background"
    android:drawableTop="@drawable/tab_write"
    android:text="發(fā)微博"
    android:textColor="#ffffff"/>
   <RadioButton
    android:id="@+id/RadioButton3"
    style="@style/tab_item_background"
    android:drawableTop="@drawable/tab_me"
    android:text="用戶信息"
    android:textColor="#ffffff"/>
   <RadioButton
    android:id="@+id/RadioButton4"
    style="@style/tab_item_background"
    android:drawableTop="@drawable/tab_more"
    android:text="更多"
    android:textColor="#ffffff"/>
  </RadioGroup>
 </LinearLayout>
</TabHost>

效果圖:

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關文章

最新評論

鸡东县| 闽清县| 濉溪县| 汪清县| 苍溪县| 衡水市| 多伦县| 鄱阳县| 沾化县| 青岛市| 白山市| 高密市| 女性| 扎赉特旗| 安阳市| 石门县| 即墨市| 银川市| 平罗县| 新宁县| 嵊泗县| 宣化县| 吉木乃县| 南木林县| 镇巴县| 龙南县| 沁水县| 英吉沙县| 阳泉市| 车致| 松溪县| 忻州市| 晋州市| 湟源县| 武定县| 海口市| 微山县| 酒泉市| 通山县| 堆龙德庆县| 论坛|