mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-04 15:28:21 +03:00
42 lines
1.6 KiB
XML
42 lines
1.6 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:padding="6dp">
|
||
|
|
||
|
<ImageView android:id="@+id/itemThumbnailView"
|
||
|
android:layout_width="125dp"
|
||
|
android:layout_height="70dp"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:src="@drawable/dummi_thumbnail"/>
|
||
|
|
||
|
<TextView android:id="@+id/itemVideoTitleView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="55dp"
|
||
|
android:layout_toRightOf="@id/itemThumbnailView"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:paddingLeft="6dp"
|
||
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
||
|
|
||
|
<TextView android:id="@+id/itemUploaderView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_toRightOf="@id/itemThumbnailView"
|
||
|
android:layout_below="@id/itemVideoTitleView"
|
||
|
android:paddingLeft="6dp"
|
||
|
android:textAppearance="?android:attr/textAppearanceSmall"/>
|
||
|
|
||
|
<TextView android:id="@+id/itemDurationView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_toRightOf="@id/itemThumbnailView"
|
||
|
android:layout_below="@id/itemUploaderView"
|
||
|
android:paddingLeft="6dp"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
||
|
|
||
|
|
||
|
|
||
|
</RelativeLayout>
|