<?xml version="1.0" encoding="utf-8"?> | |
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
> | |
<RelativeLayout | |
android:id="@+id/itemThumbnailViewContainer" | |
android:layout_width="wrap_content" | |
android:layout_height="60dp" | |
android:layout_marginRight="6dp" | |
android:orientation="horizontal"> | |
<TextView | |
android:id="@+id/itemThumbnail_View" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_alignParentLeft="true" | |
android:layout_centerVertical="true" | |
android:layout_marginLeft="30dp" | |
android:text="1" | |
android:textAlignment="center" | |
android:textColor="@android:color/black" | |
android:textStyle="normal" | |
/> | |
<TextView | |
android:id="@+id/itemVideoTitle_View" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_alignParentLeft="true" | |
android:layout_centerVertical="true" | |
android:layout_marginLeft="70dp" | |
android:layout_marginRight="5dp" | |
android:maxLines="1" | |
android:text="Pranamam pranamam" | |
android:textAppearance="?android:attr/textAppearanceLarge" | |
android:textColor="@android:color/black" | |
android:textSize="16sp" /> | |
<TextView | |
android:id="@+id/dur_ation" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_alignParentRight="true" | |
android:layout_centerVertical="true" | |
android:layout_marginRight="8dp" | |
android:singleLine="true" | |
android:text="1:20" | |
android:textAppearance="?android:attr/textAppearanceLarge" | |
android:textColor="@android:color/black" | |
android:textSize="16sp" /> | |
</RelativeLayout> | |
</FrameLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment