我的实现_头部

来源:互联网 发布:网络用语dp什么意思 编辑:程序博客网 时间:2024/05/29 18:02

这里写图片描述


fragment_me.xml

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical">    <RelativeLayout        android:id="@+id/layout_me_header"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:background="#008cc9">        <Button            android:id="@+id/btn_login"            android:layout_width="100dp"            android:layout_height="100dp"            android:layout_centerHorizontal="true"            android:layout_marginTop="10dp"            android:background="@mipmap/login_btn" />        <LinearLayout            android:layout_width="match_parent"            android:layout_height="wrap_content"            android:layout_below="@id/btn_login"            android:layout_marginBottom="10dp"            android:layout_marginTop="5dp"            android:orientation="horizontal">            <LinearLayout                android:layout_width="0dp"                android:layout_height="wrap_content"                android:layout_weight="1"                android:gravity="center"                android:orientation="vertical">                <ImageView                    android:layout_width="40dp"                    android:layout_height="40dp"                    android:src="@mipmap/me_menu_sail" />                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"                    android:text="优惠券" />            </LinearLayout>            <LinearLayout                android:layout_width="0dp"                android:layout_height="wrap_content"                android:layout_weight="1"                android:gravity="center"                android:orientation="vertical">                <ImageView                    android:layout_width="40dp"                    android:layout_height="40dp"                    android:src="@mipmap/me_menu_yh" />                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"                    android:text="折扣券" />            </LinearLayout>            <LinearLayout                android:layout_width="0dp"                android:layout_height="wrap_content"                android:layout_weight="1"                android:gravity="center"                android:orientation="vertical">                <ImageView                    android:layout_width="40dp"                    android:layout_height="40dp"                    android:src="@mipmap/me_menu_go" />                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"                    android:text="购物车" />            </LinearLayout>        </LinearLayout>    </RelativeLayout></LinearLayout>
原创粉丝点击