如何在android中制作双向搜索栏?

时间:2014-11-10 04:00:45

标签: android customization seekbar

我正在构建一个Android应用程序,用户通过搜索栏选择最大值。

我在同一个搜索栏上需要另一个按钮,以便用户可以从特定的搜索栏中选择最大值和最小值。

这是我的单一搜索栏代码 -

package com.ui.yogeshblogspot;

public class CustomSeekBarExActivity extends Activity implements OnSeekBarChangeListener{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
 SeekBar bar=(SeekBar)findViewById(R.id.seekBar1);
 bar.setOnSeekBarChangeListener(this);
}

@Override
public void onProgressChanged(SeekBar seekBar, int progress,
        boolean fromUser) {
    // TODO Auto-generated method stub
    TextView tv=(TextView)findViewById(R.id.textView2);
    tv.setText(Integer.toString(progress)+"%");

}

@Override
public void onStartTrackingTouch(SeekBar seekBar) {
    // TODO Auto-generated method stub

}

@Override
public void onStopTrackingTouch(SeekBar seekBar) {
    // TODO Auto-generated method stub

}
}

这是我的搜索栏的xml代码 -

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" 
android:background="#FFFFFF">

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Choose Your Progress"
    android:textColor="#000000"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<SeekBar
    android:id="@+id/seekBar1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:layout_gravity="center"
    android:progressDrawable="@xml/progress"
    android:max="100"
    android:thumb="@xml/thumb"/>

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="#000000"
    android:gravity="center"
    android:layout_gravity="center"
    android:paddingTop="10dp"
    android:textAppearance="?android:attr/textAppearanceMedium" />

</LinearLayout>

8 个答案:

答案 0 :(得分:13)

完全自定义双向和单向搜索栏,您可以提供拇指颜色等 http://codingsignals.com/crystal-range-seekbar-in-android/

添加你的gradle

dependencies {
compile 'com.crystal:crystalrangeseekbar:1.0.0' 
}

Two way seekbar

<com.crystal.crystalrangeseekbar.widgets.BubbleThumbRangeSeekbar
android:id="@+id/rangeSeekbar5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:corner_radius="10"
app:min_value="0"
app:max_value="100"
app:steps="5"
app:bar_color="#F7BB88"
app:bar_highlight_color="#E07416"
app:left_thumb_image="@drawable/thumb"
app:right_thumb_image="@drawable/thumb"
app:left_thumb_image_pressed="@drawable/thumb_pressed"
app:right_thumb_image_pressed="@drawable/thumb_pressed"
app:data_type="_integer"/>

答案 1 :(得分:11)

Android小部件类库只有一个滑块控件,只有一个拇指控件的搜索条。做了一些在线研究,发现了这个很酷的自定义小部件,范围搜索栏。

你可以按照下面的任何一个

https://github.com/edmodo/range-bar

https://code.google.com/p/range-seek-bar/

https://github.com/Larpon/RangeSeekBar

答案 2 :(得分:4)

enter image description here

来自Here

        <com.appyvet.rangebar.RangeBar
            xmlns:custom="http://schemas.android.com/apk/res-auto"
            android:id="@+id/SearchrangeSeekbarAge"
            android:layout_width="match_parent"
            android:layout_height="72dp"
            custom:tickStart="18"
            custom:tickInterval="1"
            custom:tickEnd="70" />


        <com.appyvet.rangebar.RangeBar
            xmlns:custom="http://schemas.android.com/apk/res-auto"
            android:id="@+id/SearchrangeSeekbarHeight"
            android:layout_width="match_parent"
            android:layout_height="72dp"
            custom:tickStart="4.5"
            custom:tickInterval="0.10"
            custom:tickEnd="7.0" />


rangebar.setOnRangeBarChangeListener(new RangeBar.OnRangeBarChangeListener() {
        @Override
        public void onRangeChangeListener(RangeBar rangeBar, int leftPinIndex,
                int rightPinIndex,
                String leftPinValue, String rightPinValue) {
        }
    });

答案 3 :(得分:2)

你不需要使用两个搜索栏,但你可以只使用一个搜索栏,只需要两个拇指就可以完成相同的最小值和最大值功能 这是一个可以使用https://code.google.com/p/range-seek-bar/

的库

您可以使用以下代码

private final Thumb getClosestThumb(float touchX)

{
double xValue = screenToNormalized(touchX);        
return (Math.abs(xValue - normalizedMinValue) < Math.abs(xValue - normalizedMaxValue)) ? Thumb.MIN : Thumb.MAX;
}

在&#34;公共布尔值onTouchEvent(MotionEvent事件)&#34;,

if(pressedThumb == null),
pressedThumb = getClosestThumb(mDownMotionX);

答案 4 :(得分:1)

enter image description here

既然 RangeSlider 已正式添加到 Material Components 并支持所需的选项,我建议使用它而不是外部库。

首先,您应该向 XML 布局添加视图:

<com.google.android.material.slider.RangeSlider
android:id="@+id/range_seek_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:valueFrom="0.0"
android:valueTo="100.0"
app:values="@array/initial_slider_values"/>

然后将初始滑块值添加到数组

<resources>
  <array name="initial_slider_values">
    <item>20.0</item>
    <item>70.0</item>
  </array>
</resources>

之后,您可以在代码中访问 RangeSlider 值:

binding.rangeSeekBar.addOnChangeListener { slider, value, fromUser ->
    Logger.d(slider.values)
}

其中 values 是一个包含 2 个成员的浮动列表

答案 5 :(得分:0)

RangeSeekBar https://github.com/RanaRanvijaySingh/RangeSeekBar。此外,还有其他可用的库提供了大量的自定义功能。如果您想进行更多交互式设计,请查找材料范围栏 http://android-arsenal.com/details/1/1272enter image description here

答案 6 :(得分:0)

我认为这个链接也可能有帮助。range-seek-bar。 在 jitpack.io 有关于它的解释。

    <org.florescu.android.rangeseekbar.RangeSeekBar
        android:id="@+id/rangebar1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:thumbNormal="@drawable/ic_keyboard_arrow_down_black_24dp"
        app:thumbPressed="@drawable/ic_keyboard_arrow_down_black_24dp"/>

答案 7 :(得分:0)

你可以使用我的 this libraby。它带有大量的自定义。它支持在两个方向上寻求进步。

bidirection-seekbar-github