Created
February 27, 2019 03:31
-
-
Save ncy906302/66dd73cb5fadebfb540ce7b1b53541d2 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"?> | |
<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