Created
March 14, 2015 01:48
-
-
Save akexorcist/312949afadb7420a514a to your computer and use it in GitHub Desktop.
This file contains 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:orientation="horizontal" android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:padding="10dp" | |
android:gravity="center_vertical" | |
android:background="#FFFFFF"> | |
<ImageView | |
android:layout_width="50dp" | |
android:layout_height="50dp" | |
android:id="@+id/imageView" | |
android:src="@drawable/ic_launcher" /> | |
<LinearLayout | |
android:orientation="vertical" | |
android:layout_width="0dp" | |
android:layout_height="wrap_content" | |
android:layout_marginLeft="10dp" | |
android:layout_weight="1" | |
android:layout_marginRight="10dp"> | |
<TextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="Name" | |
android:id="@+id/tv_name" | |
android:textColor="#444444" | |
android:textSize="16dp" /> | |
<TextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="Team" | |
android:id="@+id/tv_team" | |
android:textColor="#999999" | |
android:textSize="16dp" /> | |
</LinearLayout> | |
<TextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="1" | |
android:id="@+id/tv_number" | |
android:textColor="#444444" | |
android:textSize="20dp" /> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment