我希望我的慢键加减 0.1,快键加减 1

问题描述

我已经将这种方法用于数字选择器..

https://github.com/milosmns/actual-number-picker

我试图覆盖一些方法但是这个只读文件

我怎样才能改变我的慢箭头,使差异为 0.1,快箭头为 1。

下面是java文件

```public class infoFragment extends Fragment {


    private ActualNumberPicker mPicker;
    TextView weight;
    


    @Override
    public View onCreateView(LayoutInflater inflater,ViewGroup container,Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View view=inflater.inflate(R.layout.fragment_info,container,false);

        mPicker = (ActualNumberPicker) view.findViewById(R.id.actual_picker);
        weight=view.findViewById(R.id.weight);

        mPicker.setListener(new OnValuechangelistener() {
            @Override
            public void onValueChanged(int oldValue,int newValue) {
                String val=String.valueOf(newValue);
                weight.setText(val);
            }
        });

        return view;
    }
}```


***below is xml file***

``` <me.angrybyte.numberpicker.view.ActualNumberPicker
        android:id="@+id/actual_picker"
        android:layout_width="wrap_content"
        android:layout_height="48dp"
        app:controls_color="@android:color/black"
        app:draw_over_controls="false"
        app:draw_over_text="false"
        app:fast_controls_color="@android:color/darker_gray"
        app:layout_constraintBottom_toBottomOf="@+id/weight"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.497"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.358"
        app:max_value="150"
        app:min_value="0"
        app:show_bars="false"
        app:show_controls="true"
        app:show_fast_controls="true"
        app:show_highlight="true"
        app:show_text="true"
        app:text_color="@android:color/black"
        app:text_size="16sp"
        app:value="50" />```

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...