无法将自定义拇指定位在搜索栏的中心

时间:2011-05-21 12:46:28

标签: android seekbar

我试图改变搜索栏的宽度并使其变薄。但我的拇指并没有出现在搜索栏的中心。 Thumb是一个自定义的9补丁图像。

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
 >
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/relLayout"
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
>
    <SeekBar 
        android:paddingLeft="60dp" 
        android:progressDrawable="@drawable/seekbar_progress" 
        android:progress="0" 
        android:layout_height="20dp" 
        android:layout_width="fill_parent" 
        android:id="@+id/frequency_slider" 
        android:max="1" 
        android:paddingRight="60dp" 
        android:minWidth="60dp"
        android:minHeight="60dp"
        android:layout_alignParentRight="true"

        android:thumb="@drawable/seek_normal_thumb" >
        </SeekBar>



</RelativeLayout>
<WebView  xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/webkit"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/relLayout"
    android:layout_alignParentTop="true"
/>
</RelativeLayout>

2 个答案:

答案 0 :(得分:6)

我通过定义搜索栏的minHeight和maxHeight来做对了

答案 1 :(得分:5)

定义maxHeight值大的属性后:

android:maxHeight="1000dp"

SeekBar将调整到中心