我依照示例进行操作 https://github.com/ChristopheVersieux/HoloEverywhere 创建Seekbar,如下图所示。但是,与我的初学者相比,它太先进了,
如果有人能告诉我怎么做,我会很感激,我只需要相关代码吗?
答案 0 :(得分:2)
我明白了,我错过了android:拇指:
<SeekBar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/seekBar1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/topBar"
android:layout_marginTop="26dip"
android:paddingLeft="10dip"
android:paddingRight="10dip"
android:paddingTop="10dip"
android:max="10000"
style="?android:attr/progressBarStyleHorizontal"
android:progressDrawable="@drawable/scrubber_progress_horizontal_holo_light"
android:thumb="@drawable/scrubber_control_selector_holo" >
</SeekBar>
在drwable中:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/scrubber_control_disabled_holo" android:state_enabled="false"/>
<item android:drawable="@drawable/scrubber_control_pressed_holo" android:state_pressed="true"/>
<item android:drawable="@drawable/scrubber_control_focused_holo" android:state_selected="true"/>
<item android:drawable="@drawable/scrubber_control_normal_holo"/>
</selector>
和
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@android:id/background"
android:drawable="@drawable/scrubber_track_holo_light"/>
<item android:id="@android:id/secondaryProgress">
<scale
android:drawable="@drawable/scrubber_secondary_holo"
android:scaleWidth="100%" />
</item>
<item android:id="@android:id/progress">
<scale
android:drawable="@drawable/scrubber_primary_holo"
android:scaleWidth="100%" />
</item>
</layer-list>
当然你还需要那里的图像。
答案 1 :(得分:1)
要使用主题,您必须在res / values文件夹中使用以下代码创建“themes.xml”文件(假设导入了库...):
<style name="YourTheme" parent="Theme.HoloEverywhereLight">
<!-- You can customize the theme here! -->
</style>
在应用程序的AndroidManifest文件中,应用主题:
<application
android:icon="@drawable/app_launch_icon"
android:label="@string/app_name"
android:theme="@style/YourTheme" >
最后在您的activity的main.xml布局中,在某处添加搜索条,如下所示:
<SeekBar
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:progress="75" />