2017-11-11 22:47:34 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/itemRoot"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clickable="false"
|
2017-11-14 05:13:52 +00:00
|
|
|
android:paddingLeft="@dimen/video_item_search_padding"
|
|
|
|
android:paddingRight="@dimen/video_item_search_padding"
|
|
|
|
android:paddingTop="@dimen/video_item_search_padding">
|
2017-11-11 22:47:34 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/itemTitleView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:fadingEdge="horizontal"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:scrollHorizontally="true"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
2017-11-14 05:13:52 +00:00
|
|
|
android:textSize="@dimen/channel_item_detail_title_text_size"
|
2017-11-11 22:47:34 +00:00
|
|
|
tools:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. "/>
|
|
|
|
|
|
|
|
<TextView
|
2017-11-14 05:13:52 +00:00
|
|
|
android:id="@+id/itemAdditionalDetails"
|
2017-11-11 22:47:34 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/itemTitleView"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
2018-01-04 06:53:31 +00:00
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:fadingEdge="horizontal"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:scrollHorizontally="true"
|
2017-11-11 22:47:34 +00:00
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textSize="@dimen/video_item_search_uploader_text_size"
|
2017-11-14 05:13:52 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible"
|
2018-01-04 06:53:31 +00:00
|
|
|
tools:text="UPLOADER" />
|
2017-11-11 22:47:34 +00:00
|
|
|
</RelativeLayout>
|