49 lines
2.4 KiB
XML
49 lines
2.4 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:orientation="vertical"
|
||
|
android:scrollbars="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/detail_upload_date_view"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="16dp"
|
||
|
android:layout_marginTop="6dp"
|
||
|
android:layout_marginEnd="16dp"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:textSize="@dimen/video_item_detail_upload_date_text_size"
|
||
|
android:textStyle="bold"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintHorizontal_bias="0.0"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
tools:text="Published on Oct 2, 2009" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/detail_description_view"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="16dp"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:layout_marginEnd="16dp"
|
||
|
android:layout_marginBottom="16dp"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:textIsSelectable="true"
|
||
|
android:textSize="@dimen/video_item_detail_description_text_size"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toBottomOf="@+id/detail_upload_date_view"
|
||
|
app:layout_constraintVertical_bias="0.0"
|
||
|
tools:text="Description Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed a ultricies ex. Integer sit amet sodales risus. Duis non mi et urna pretium bibendum." />
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||
|
</androidx.core.widget.NestedScrollView>
|