找传奇、传世资源到传世资源站!

android_底部tab签实例源码下载(Fragment实现)_

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

android_底部tab签实例源码下载(Fragment实现)_ Android平台开发-第1张

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

  <FrameLayout
    android:id="@ id/content"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1" >
  </FrameLayout>

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:background="@drawable/tab_bg" >

    <RelativeLayout
      android:id="@ id/message_layout"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1" >

      <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:orientation="vertical" >

        <ImageView
          android:id="@ id/message_image"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:src="@drawable/message_unselected" />

        <TextView
          android:id="@ id/message_text"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:text="消息"
          android:textColor="#82858b" />
      </LinearLayout>
    </RelativeLayout>

    <RelativeLayout
      android:id="@ id/contacts_layout"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1" >

      <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:orientation="vertical" >

        <ImageView
          android:id="@ id/contacts_image"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:src="@drawable/contacts_unselected" />

        <TextView
          android:id="@ id/contacts_text"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:text="联系人"
          android:textColor="#82858b" />
      </LinearLayout>
    </RelativeLayout>

    <RelativeLayout
      android:id="@ id/news_layout"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1" >

      <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:orientation="vertical" >

        <ImageView
          android:id="@ id/news_image"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:src="@drawable/news_unselected" />

        <TextView
          android:id="@ id/news_text"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:text="动态"
          android:textColor="#82858b" />
      </LinearLayout>
    </RelativeLayout>

    <RelativeLayout
      android:id="@ id/setting_layout"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1" >

      <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:orientation="vertical" >

        <ImageView
          android:id="@ id/setting_image"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:src="@drawable/setting_unselected" />

        <TextView
          android:id="@ id/setting_text"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:text="设置"
          android:textColor="#82858b" />
      </LinearLayout>
    </RelativeLayout>
  </LinearLayout>

</LinearLayout>

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复