无法将自定义拇指定位在搜索栏的中心
我尝试改变搜索栏的宽度并使其变薄。但我的拇指没有到达搜索栏的中心。 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>
I tried to change the width of seekbar and made it thin. But my thumb is not coming at the centre of seekbar. Thumb is a customised 9 patch image.
<?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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过定义搜索栏的 minHeight 和 maxHeight 得到了正确的结果
I got it right by defining minHeight and maxHeight of the seekbar
定义maxHeight大的属性后:
SeekBar会调整到中心
After defining an attribute with big value of maxHeight:
SeekBar will be adjusted to the center