Seekbar背景图像不够大

时间:2013-04-27 06:44:58

标签: android seekbar

我有一个搜索栏,在其背景中我放了一张标记的图片。这是背景 enter image description here

但是当我在我的搜索栏中添加它时,它会以这种方式显示

enter image description here

这是 Absolutlayout 中的代码 1 - 我希望它是biger。用户必须清楚数字

<SeekBar
        android:id="@+id/seekBar1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_x="11dp"
        android:layout_y="68dp"
        android:indeterminate="false"
        android:max="1000"
        android:progress="5"
        android:progressDrawable="@drawable/styled_progress"
        android:thumb="@drawable/thumbler_small" />

2 - 另一个问题是:在我看来,背景正在重复!我怎么能阻止它?

由于

1 个答案:

答案 0 :(得分:2)

添加父视图以保存LinearLayout等背景,并将搜索栏背景添加到其父视图中,如下所示:

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/your_seekbar_background"
    >
    <SeekBar
        android:id="@+id/seekBar1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_x="11dp"
        android:layout_y="68dp"
        android:indeterminate="false"
        android:max="1000"
        android:progress="5"
        android:progressDrawable="@drawable/styled_progress"
        android:thumb="@drawable/thumbler_small" />

</LinearLayout>