|
@@ -9,15 +9,11 @@
|
|
|
android:id="@+id/text"
|
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="400dp"
|
|
|
-
|
|
|
- android:lineSpacingExtra="6dp"
|
|
|
+ android:layout_height="220dp"
|
|
|
+ android:layout_margin="15dp"
|
|
|
+ android:lineSpacingExtra="3dp"
|
|
|
android:text="Hello World!"
|
|
|
- android:textSize="16sp"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintLeft_toLeftOf="parent"
|
|
|
- app:layout_constraintRight_toRightOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
|
+ android:textSize="16sp" />
|
|
|
<ScrollView
|
|
|
android:visibility="gone"
|
|
|
android:layout_width="match_parent"
|
|
@@ -31,23 +27,29 @@
|
|
|
zhy:max_select="-1"/>
|
|
|
</ScrollView>
|
|
|
|
|
|
- <Button
|
|
|
- android:id="@+id/start"
|
|
|
- android:layout_width="match_parent"
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:text="开始播放" />
|
|
|
+ android:orientation="horizontal">
|
|
|
+ <Button
|
|
|
+ android:id="@+id/start"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="开始播放" />
|
|
|
|
|
|
- <Button
|
|
|
- android:id="@+id/end"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="暂停播放" />
|
|
|
+ <Button
|
|
|
+ android:id="@+id/end"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="暂停播放" />
|
|
|
|
|
|
- <Button
|
|
|
- android:id="@+id/test"
|
|
|
- android:visibility="gone"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="测试数据" />
|
|
|
+ <Button
|
|
|
+ android:id="@+id/test"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="测试数据" />
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|