在我的应用中,我有比例和进度条,如下图
所示我有进度条和标记的单独图像。我需要的是如何使标记在android中的进度条上移动。请帮帮我。
我的布局xml是:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout android:layout_height="wrap_content" android:background="@drawable/scale_bg"
android:layout_marginLeft="10dp" android:layout_marginRight="10dp"
android:layout_width="fill_parent" android:id="@+id/relativeLayout1">
</RelativeLayout>
<FrameLayout android:layout_height="wrap_content" android:layout_marginTop="20dp"
android:layout_marginLeft="10dp" android:layout_marginRight="10dp"
android:layout_width="fill_parent" android:id="@+id/relativeLayout2">
<ImageButton android:layout_width="wrap_content"
android:id="@+id/imageButton1" android:layout_height="wrap_content"
android:background="@drawable/slider_bg" android:layout_alignParentLeft="true">
</ImageButton>
<ImageButton android:layout_width="wrap_content" android:clickable="true"
android:id="@+id/imageButton1" android:layout_height="wrap_content"
android:background="@drawable/slider_arrow" android:layout_alignParentLeft="true">
</ImageButton>
</FrameLayout>
</LinearLayout>
更新了xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout android:layout_height="wrap_content" android:background="@drawable/scale_bg"
android:layout_marginLeft="10dp" android:layout_marginRight="10dp"
android:layout_width="fill_parent" android:id="@+id/relativeLayout1">
</RelativeLayout>
<RelativeLayout android:layout_height="wrap_content" android:layout_marginTop="20dp"
android:layout_marginLeft="10dp" android:layout_marginRight="10dp"
android:layout_width="fill_parent" android:id="@+id/relativeLayout2">
<SeekBar android:layout_height="wrap_content" android:id="@+id/seekBar1"
android:layout_width="match_parent" android:thumb="@drawable/slider_arrow"
android:progressDrawable="@drawable/slider_bg">
</SeekBar>
</RelativeLayout>
</LinearLayout>
slider_bg和slider_arrow是png图像。
答案 0 :(得分:1)
这很简单,我建议你查看以下博客文章,该文章描述了如何做到这一点:http://www.mokasocial.com/2011/02/create-a-custom-styled-ui-slider-seekbar-in-android/
答案 1 :(得分:0)
试
<SeekBar android:layout_height="wrap_content" android:id="@+id/seekBar1" android:layout_width="match_parent" android:thumb="@drawable/slider_arrow" android:progressDrawable="@drawable/slider_bg"></SeekBar>
答案 2 :(得分:0)
SeekBar
,与Windows控件上的Slider
相同。您需要自定义背景,颜色和索引器。