parent
13feba2469
commit
4481c7ad45
@ -1,39 +1,58 @@ |
||||
<?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="match_parent"> |
||||
|
||||
<VideoView |
||||
android:id="@+id/video" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent"/> |
||||
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" |
||||
android:background="@android:color/white"> |
||||
|
||||
<LinearLayout |
||||
android:layout_width="match_parent" |
||||
android:layout_height="100dp" |
||||
android:layout_gravity="bottom" |
||||
android:gravity="center_vertical" |
||||
android:background="@android:color/white" |
||||
android:orientation="horizontal"> |
||||
android:layout_height="wrap_content" |
||||
android:orientation="vertical"> |
||||
|
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layout_margin="8dp" |
||||
android:text="ACTUAL RESOLUTION" |
||||
android:textColor="@android:color/black" |
||||
android:textSize="18sp" |
||||
android:textStyle="bold" /> |
||||
<VideoView |
||||
android:id="@+id/video" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="200dp"/> |
||||
|
||||
<TextView |
||||
android:id="@+id/actualResolution" |
||||
android:layout_width="wrap_content" |
||||
<LinearLayout |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:layout_margin="8dp" |
||||
android:textColor="@android:color/black" |
||||
android:textSize="14.5sp" /> |
||||
android:orientation="vertical" |
||||
android:padding="16dp"> |
||||
|
||||
</LinearLayout> |
||||
<!-- Resolution --> |
||||
<FrameLayout |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:layout_marginTop="16dp"> |
||||
<View |
||||
android:layout_width="2.5dp" |
||||
android:layout_height="match_parent" |
||||
android:background="@color/colorPrimary" /> |
||||
<LinearLayout |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:layout_marginLeft="10dp" |
||||
android:orientation="vertical"> |
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layout_marginLeft="3dp" |
||||
android:text="ACTUAL RESOLUTION" |
||||
android:textColor="@android:color/black" |
||||
android:textSize="18sp" |
||||
android:textStyle="bold" /> |
||||
<TextView |
||||
android:id="@+id/actualResolution" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layout_marginLeft="3dp" |
||||
android:textColor="@android:color/black" |
||||
android:textSize="14.5sp" /> |
||||
</LinearLayout> |
||||
</FrameLayout> |
||||
|
||||
</LinearLayout> |
||||
|
||||
</FrameLayout> |
||||
</LinearLayout> |
||||
</ScrollView> |
||||
|
Loading…
Reference in new issue