带有男女图标的头像

带有男女图标的头像

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

 <FrameLayout android:layout_width="wrap_content"
            android:layout_height="wrap_content"



            >
            <com.zszdevelop.layouttest.CircleImageView android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/git01"

            />
        <ImageView android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/female"
           android:layout_gravity="right|bottom"
            />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="right|bottom"
            android:src="@drawable/male" />

        </FrameLayout>

</LinearLayout>