您的位置:首页 > 其它

底部菜单图片加按钮布局文件

2017-12-27 16:47 260 查看
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipChildren="false">
<LinearLayout
android:id="@+id/ll_bottom"
android:layout_width="match_parent"
android:layout_height="130dp"
android:layout_alignParentBottom="true"
android:orientation="horizontal">
<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:layout_weight="1"
android:id="@+id/bt">
<ImageView
android:id="@+id/dd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@mipmap/ic_launcher" />

<TextView
android:padding="2dp"
android:textSize="15sp"
android:layout_centerInParent="true"
android:text="首页"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/dd"/>

</RelativeLayout>

<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:layout_weight="1">
<ImageView
android:id="@+id/dd2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@mipmap/ic_launcher" />
<TextView
android:padding="2dp"
android:textSize="15sp"
android:layout_centerInParent="true"
android:text="鱼塘"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/dd2"/>

</RelativeLayout>

<RelativeLayout
android:layout_width="100dp"
android:layout_height="150dp"
android:layout_gravity="bottom"
>

<ImageView
android:id="@+id/dd5"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_centerInParent="true"
android:src="@mipmap/ic_launcher_round" />
<TextView
android:padding="2dp"
android:textSize="15sp"
android:layout_centerInParent="true"
android:text="添加"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/dd5"/>

</RelativeLayout>

<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:layout_weight="1">
<ImageView
android:id="@+id/dd3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@mipmap/ic_launcher" />
<TextView
android:textSize="15sp"
android:layout_centerInParent="true"
android:text="消息"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/dd3"/>

</RelativeLayout>

<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:layout_weight="1">
<ImageView
android:id="@+id/dd4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@mipmap/ic_launcher" />
<TextView
android:padding="2dp"
android:textSize="15sp"
android:layout_centerInParent="true"
android:text="我的"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/dd4"/>

</RelativeLayout>>

</LinearLayout>

</RelativeLayout>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: