android这个效果怎么做出来的

管理地址那个按钮,帮助与反馈那个按钮图片

你给整个这个横向item的跟布局添加onclick就可以了。

Linearlayout(orientation设成horizontal)中依次添加ImageView、TextView、Imageview(最后的ImageView单独用一个LinearLayout包起来,宽度设成Match_Parent,gravity设成right)

参考下面的,里面的资源换成自己的

<RelativeLayout
                android:id="@+id/layoutItem4"
                android:layout_width="match_parent"
                android:layout_height="47dp"
                android:background="@drawable/selector_item"
                android:paddingLeft="20dp" >

<ImageView
            android:id="@+id/imgHead4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginRight="5dp"
            android:src="@drawable/icon_checkcode" />                

                <TextView
                    android:id="@+id/tv_title_4"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentLeft="false"
                    android:layout_centerVertical="true"
                    android:layout_toRightOf="@+id/imgHead4"
                    android:text="用户协议"
                    android:textColor="@color/itemtitlecolor"
                    android:textSize="@dimen/text_size_15" />

                <ImageView
                    android:id="@+id/imageView4"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="true"
                    android:layout_centerVertical="true"
                    android:layout_marginRight="13dp"
                    android:src="@drawable/icon_right_arrow" />

                <View
                    android:id="@+id/view4"
                    android:layout_width="match_parent"
                    android:layout_height="1px"
                    android:layout_alignParentBottom="true"
                    android:background="@color/divider" />
            </RelativeLayout> 

android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginTop="15dp"
android:background="@color/color_linear" />

        <RelativeLayout
            android:id="@+id/rl_setting_tel"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_marginLeft="10dp"
            android:background="@color/color_white">
            <ImageView
                android:id="@+id/iv_setting"
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_centerVertical="true"
                android:src="@drawable/add_focus" />

            <TextView
                android:layout_toRightOf="@id/iv_setting"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center_vertical"
                android:text="客服电话"
                android:textColor="@color/color_gray_left"
                android:textSize="16sp" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_alignParentRight="true"
                android:layout_marginRight="45dp"
                android:gravity="center_vertical"
                android:text="400-920-0011"
                android:textColor="@color/color_gray_right"
                android:textSize="16sp" />
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_alignParentRight="true"
                android:gravity="center_vertical"
                android:padding="15dp"
                android:scaleType="fitCenter"
                android:src="@drawable/my_right" />
        </RelativeLayout>

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginLeft="15dp"
            android:layout_marginRight="15dp"
            android:background="@color/color_linear" />
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#efefef"
    android:scrollbars="none" >

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

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="48dp"
            android:background="#ffffff" >

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:layout_centerVertical="true"
                                    android:text="XXXX"
                android:textSize="20sp" />

            <ImageView
                android:id="@+id/imv_shezhi"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="14dp"
                android:contentDescription="@string/app_name"
                android:src="@drawable/wode_shezhi" />
        </RelativeLayout>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="120dp" >

            <ImageView
                android:id="@+id/iv_mine_bacground"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@drawable/usericon_bg"
                android:contentDescription="@string/app_name"
                android:scaleType="fitXY" />

            <TextView
                android:id="@+id/tv_username"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:text="亲,欢迎XXXXX"
                android:textColor="#FFFFFF"
                android:layout_marginTop="30dp"
                android:textSize="@dimen/textSize16" />

            <Button
                android:id="@+id/login_register"
                android:layout_width="110dp"
                android:layout_height="40dp"
                android:layout_marginTop="10dp"
                android:layout_below="@+id/tv_username"
                android:gravity="center"
                android:background="@drawable/loginbutton_shape"
                android:layout_centerHorizontal="true"
                android:text="登陆/注册"
                android:textSize="14sp" />
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/rl_shopping"
            android:layout_width="fill_parent"
            android:layout_height="40.0dip"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="20.0dip"
            android:background="#ffffff" >

            <ImageView
                android:id="@+id/ImageView01"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_marginLeft="20dp"
                android:contentDescription="@string/app_name"
                android:src="@drawable/wode_gouwuche" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_toRightOf="@id/ImageView01"
                android:paddingLeft="10dp"
                android:text="购物车" />

            <ImageView
                android:id="@+id/zhan_hui"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:contentDescription="@string/app_name"
                android:paddingRight="10.0dip"
                android:src="@drawable/xiaye" />
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/rl_dingdan"
            android:layout_width="fill_parent"
            android:layout_height="40.0dip"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="1dp"
            android:background="#ffffff" >

            <ImageView
                android:id="@+id/ImageView02"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_marginLeft="20dp"
                android:contentDescription="@string/app_name"
                android:src="@drawable/wode_dingdan" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_toRightOf="@id/ImageView02"
                android:paddingLeft="10.0dip"
                android:text="我的订单" />

            <ImageView
                android:id="@+id/zhan_hui1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:contentDescription="@string/app_name"
                android:paddingRight="10.0dip"
                android:src="@drawable/xiaye" />
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/rl_youhui"
            android:layout_width="fill_parent"
            android:layout_height="40.0dip"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="20.0dip"
            android:background="#ffffff" >

            <ImageView
                android:id="@+id/ImageView03"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_marginLeft="20.0dip"
                android:contentDescription="@string/app_name"
                android:src="@drawable/wode_youhuiquan" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_toRightOf="@id/ImageView03"
                android:paddingLeft="10.0dip"
                android:text="优惠券" />

            <ImageView
                android:id="@+id/zhan_hui2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:contentDescription="@string/app_name"
                android:paddingRight="10.0dip"
                android:src="@drawable/xiaye" />
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/rl_xiaoxi"
            android:layout_width="fill_parent"
            android:layout_height="40.0dip"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="1dp"
            android:background="#ffffff" >

            <ImageView
                android:id="@+id/ImageView04"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_marginLeft="20.0dip"
                android:contentDescription="@string/app_name"
                android:src="@drawable/wode_xiaoxi" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_toRightOf="@id/ImageView04"
                android:paddingLeft="10.0dip"
                android:text="消息" />

            <ImageView
                android:id="@+id/zhan_hui3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:contentDescription="@string/app_name"
                android:paddingRight="10.0dip"
                android:src="@drawable/xiaye" />
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/rl_dihzi"
            android:layout_width="fill_parent"
            android:layout_height="40.0dip"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="20.0dip"
            android:background="#ffffff" >

            <ImageView
                android:id="@+id/ImageView05"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_marginLeft="20.0dip"
                android:contentDescription="@string/app_name"
                android:src="@drawable/wode_shouhuodizhi" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_toRightOf="@id/ImageView05"
                android:paddingLeft="10.0dip"
                android:text="收货地址" />

            <ImageView
                android:id="@+id/zhan_hui4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:contentDescription="@string/app_name"
                android:paddingRight="10.0dip"
                android:src="@drawable/xiaye" />
        </RelativeLayout>
    </LinearLayout>

</ScrollView> 

你给整个这个横向item的跟布局添加onclick就可以了。

同上,linerlayout横向,在其中分别添加一张图2个text一个箭头图片,给layout一个点击事件