Files

copied
Last update 7 years 5 months by Mengjiao Hong
FilesHW19MyApplicationappsrcmainreslayout
..
activity_main.xml
activity_main.xml
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout 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:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.mengjiaohong.myapplication.MainActivity"> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="368dp" android:layout_height="495dp" android:paddingBottom="10dp" android:paddingLeft="10dp" android:paddingRight="10dp" android:paddingTop="10dp" android:orientation="vertical" tools:layout_editor_absoluteY="8dp" tools:layout_editor_absoluteX="8dp"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Nothing yet" android:id="@+id/cameraStatus"/> <SeekBar android:id="@+id/seek1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="10dp" android:paddingBottom="10dp" android:paddingTop="10dp" android:progress="80" android:secondaryProgress="80" /> <SeekBar android:id="@+id/seek2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="10dp" android:progress="20" android:secondaryProgress="20" android:paddingTop="10dp" android:paddingBottom="10dp" /> <SurfaceView android:id="@+id/surfaceview" android:layout_width="640px" android:layout_height="400px" /> <TextureView android:id="@+id/textureview" android:layout_width="640px" android:layout_height="400px" /> </LinearLayout> </android.support.constraint.ConstraintLayout>
Report a bug