<ScrollView android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1"> <SeekBar android:id="@+id/seekBar1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="32dp" android:max="30" android:progress="30" /> </ScrollView>我想再加一个seekbar该怎么加
时间: 2024-04-26 14:23:19 浏览: 133
你可以在 ScrollView 中添加一个新的 SeekBar,例如:
```
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<SeekBar
android:id="@+id/seekBar1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="32dp"
android:max="30"
android:progress="30" />
<SeekBar
android:id="@+id/seekBar2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:max="50"
android:progress="25" />
</ScrollView>
```
这里我添加了一个新的 SeekBar,它的 ID 是 seekBar2,高度设置为 wrap_content,marginTop 设置为 16dp,最大值设置为 50,进度设置为 25。你可以根据需要自行调整它的属性。
阅读全文