Difference between revisions of "Android Studio: text"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with " <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" app:layout_constraintBottom...") |
Onnowpurbo (talk | contribs) |
||
Line 8: | Line 8: | ||
app:layout_constraintRight_toRightOf="parent" | app:layout_constraintRight_toRightOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" /> | app:layout_constraintTop_toTopOf="parent" /> | ||
+ | |||
+ | |||
+ | |||
+ | <VideoView | ||
+ | android:id="@+id/vdVw" | ||
+ | android:layout_width="match_parent" | ||
+ | android:layout_height="match_parent" | ||
+ | android:layout_gravity="center" /> |
Latest revision as of 15:05, 19 March 2022
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" />
<VideoView android:id="@+id/vdVw" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="center" />