0

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

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" />```
4

0 回答 0