Skip to content

Instantly share code, notes, and snippets.

@ncy906302
Created February 27, 2019 03:31
Show Gist options
  • Save ncy906302/66dd73cb5fadebfb540ce7b1b53541d2 to your computer and use it in GitHub Desktop.
Save ncy906302/66dd73cb5fadebfb540ce7b1b53541d2 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff">
<ImageView
android:id="@+id/grid_cd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/cd_example"/>
<TextView
android:id="@+id/grid_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/grid_cd"
android:singleLine="true"
android:text="title"
android:textSize="15dp" />
<TextView
android:id="@+id/grid_art"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/grid_title"
android:textSize="10dp"
android:singleLine="true"
android:text="art" />
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment