Android Studio: text: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Created page with " <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" app:layout_constraintBottom..."
 
No edit summary
 
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 08: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" />