自定义搜索栏

时间:2013-07-08 08:41:34

标签: android

我想制作一个自定义搜索栏。我使用此链接作为参考     http://upadhyayjiteshandroid.blogspot.in/2013/02/android-custom-seekbar.html

但是搜索栏的输出宽度太小

我不知道为什么宽度变得太小虽然我的可绘制图像不是那么小。这是我的styled_progress.xml for android:progressDrawable of seek bar。

<item
    android:id="@+android:id/SecondaryProgress"
    android:drawable="@drawable/stats_screen_status_faded_progress_bar"/>
<item
    android:id="@+android:id/progress"
    android:drawable="@drawable/stats_screen_status_active_progress_bar"/>

这是包含搜索栏的主要xml文件。

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="vertical" >

        <SeekBar
            android:id="@+id/seekBar1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="15dp"
            android:layout_marginTop="125dp"
            android:indeterminate="false"
            android:max="10"
            android:paddingLeft="15dp"
            android:paddingRight="15dp"
            android:progress="5"
            android:progressDrawable="@drawable/styled_progress"
            android:secondaryProgress="5"
            android:thumb="@drawable/stats_screen_status_arrow_pointer" />

    </LinearLayout>

我不能把图像放在这里,因为我的名声非常低。

0 个答案:

没有答案