我想制作一个自定义搜索栏。我已将此链接用作参考 http://upadhyayjiteshandroid.blogspot.in/2013/02/android-custom-seekbar.html
但是搜索栏的输出宽度太小了
我不知道为什么宽度会变得太小,尽管我的可绘制图像不是那么小。这是我的 styled_progress.xml 用于 android:progressDrawable 的搜索栏。
<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>
我不能把图片放在这里,因为我的声誉很低。