Created
October 19, 2016 07:10
-
-
Save murano500k/53d3a6f52396afefb632932d2272a7f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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:padding="16dp" | |
> | |
<android.support.v7.widget.CardView | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:id="@+id/cv" | |
> | |
<RelativeLayout | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:padding="16dp" | |
> | |
<ImageView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:id="@+id/person_photo" | |
android:layout_alignParentLeft="true" | |
android:layout_alignParentTop="true" | |
android:src="@mipmap/ic_launcher" | |
android:layout_marginRight="16dp" | |
/> | |
<TextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:id="@+id/person_name" | |
android:text="Name" | |
android:layout_toRightOf="@+id/person_photo" | |
android:layout_alignParentTop="true" | |
android:textSize="20sp" | |
/> | |
<TextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:id="@+id/person_age" | |
android:text="Description" | |
android:layout_toRightOf="@+id/person_photo" | |
android:layout_below="@+id/person_name" | |
/> | |
</RelativeLayout> | |
</android.support.v7.widget.CardView> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment