Skip to content

Instantly share code, notes, and snippets.

@ziedrebhi
Created October 18, 2014 15:19
Show Gist options
  • Save ziedrebhi/f403cc46605c6efc1942 to your computer and use it in GitHub Desktop.
Save ziedrebhi/f403cc46605c6efc1942 to your computer and use it in GitHub Desktop.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="5dp" >
<ImageView
android:id="@+id/picture"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_margin="1dp"
/>
<TextView
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_margin="1dp"
android:textColor="#040404"
android:textSize="15dip"
android:textStyle="bold"
android:text="name" />
<TextView
android:id="@+id/price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="1dp"
android:layout_marginBottom="2dp"
android:text="Small Text"
android:textColor="#ea5178"
android:textSize="10dip"
android:textStyle="bold" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment