1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     xmlns:tools="http://schemas.android.com/tools"
 4     android:layout_width="match_parent"
 5     android:layout_height="match_parent"
 6     android:paddingBottom="16dp"
 7     android:paddingLeft="16dp"
 8     android:paddingRight="16dp"
 9     android:paddingTop="16dp"
10     tools:context="com.example.wang.testapp2.TestActivity4"
11     android:orientation="vertical">
12 
13     <ImageView
14         android:layout_width="match_parent"
15         android:layout_height="200dp"
16         android:src="@drawable/car"
17         android:id="@+id/iv_1" />
18 
19     <SeekBar
20         android:layout_width="match_parent"
21         android:layout_height="wrap_content"
22         android:progress="0"
23         android:max="255"
24         android:id="@+id/se_2"/>
25 </LinearLayout>
.xml

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-06
  • 2021-12-04
  • 2021-05-11
猜你喜欢
  • 2021-08-30
  • 2021-11-18
  • 2021-12-06
  • 2021-08-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案