Seekbar长度操纵

时间:2010-05-11 11:00:20

标签: android

我在我的Android应用程序中使用搜索栏来设置音量。然而,搜索条的长度在非常短的时间内。那么有没有办法定制搜索栏的长度?

2 个答案:

答案 0 :(得分:2)

XML示例:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip">
<SeekBar android:id="@+id/default_width_seek_bar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
<SeekBar android:id="@+id/fixed_width_seek_bar"
    android:layout_width="100dip"
    android:layout_height="wrap_content" />
<SeekBar android:id="@+id/full_width_seek_bar"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />
<SeekBar android:id="@+id/padded_full_width_seek_bar"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:paddingLeft="8dip" android:paddingRight="8dip" />
</LinearLayout>

侧注:SeekBar的拇指可以在一直移动到两侧时被剪裁。像上一个SeekBar中的一些额外填充修复了这个问题。

答案 1 :(得分:0)

SeekBar sk =(SeekBar)findViewById(R.id.seekbar);
sk.setLayoutParams(params)

使用此功能,您可以设置搜索栏的长度