android seekbar大小
时间: 2023-10-18 21:12:46 浏览: 94
Android SeekBar 的大小可以通过以下两种方式进行设置:
1. 在 XML 中设置 SeekBar 的宽度和高度:
```
<SeekBar
android:id="@+id/seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:minHeight="10dp"
android:maxHeight="20dp"
android:thumb="@drawable/seekbar_thumb"
android:progressDrawable="@drawable/custom_seekbar_progress" />
```
在上面的例子中,设置了 SeekBar 的宽度为 match_parent,高度为 wrap_content,并设置了最小高度和最大高度。
2. 通过代码动态设置 SeekBar 的大小:
```
SeekBar seekBar = findViewById(R.id.seekbar);
LayoutParams layoutParams = seekBar.getLayoutParams();
layoutParams.height = 50; // 设置高度为 50dp
seekBar.setLayoutParams(layoutParams);
```
在上面的例子中,通过动态获取 SeekBar 的 LayoutParams,然后修改其高度属性来设置 SeekBar 的大小。
阅读全文