从NumberPicker android保存值

时间:2014-08-23 20:11:18

标签: java android numberpicker

我遇到了android NumberPicker的问题。我确信这是因为 onValueChange(NumberPicker picker,int oldVal,int newVal)调用。我目前在代码中没有oldVal或newVal ...我的问题是如何在不使用TextView xml对象的情况下从NumberPicker保存值。目前我不能回滚到NumberPicker上的较低数字,我假设这是因为onValueChange方法...我不想显示屏幕上选择的当前或以前的数字,所以id就像避免设置一个xml中的T​​extView,但我不确定如何保存数字选择器的当前值...

java文件:

package com.example.android.test;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.NumberPicker;
import android.widget.NumberPicker.OnValueChangeListener;
import android.widget.Toast;

public class MainActivity extends Activity {

static final int MIN_VAL = 0;
static final int MAX_VAL = 255;
NumberPicker red, green, blue;
View v;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    red = (NumberPicker) findViewById(R.id.redPicker);
    green = (NumberPicker) findViewById(R.id.greenPicker);
    blue = (NumberPicker) findViewById(R.id.bluePicker);

    red.setMinValue(MIN_VAL);
    red.setMaxValue(MAX_VAL);
    red.setWrapSelectorWheel(false);

    green.setMinValue(MIN_VAL);
    green.setMaxValue(MAX_VAL);
    green.setWrapSelectorWheel(false);

    blue.setMinValue(MIN_VAL);
    blue.setMaxValue(MAX_VAL);
    blue.setWrapSelectorWheel(false);

    v = findViewById(R.id.color_box);
    v.setBackgroundColor(0x0000FF00);

    red.setOnValueChangedListener(new OnValueChangeListener() {

        @Override
        public void onValueChange(NumberPicker picker, int oldVal, int newVal) {
            // TODO Auto-generated method stub

            v.setBackgroundColor(0xFF11F000);
        }
    });
}

}

xml文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom">

<LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="187dp">

    <NumberPicker
        android:id="@+id/redPicker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"  />

    <NumberPicker
        android:id="@+id/greenPicker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"  />

    <NumberPicker
        android:id="@+id/bluePicker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"  />

</LinearLayout>

<View
    android:id="@+id/color_box"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    />

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

这不是我的代码,这是一个问题,虚拟设备是懒散的...我开始使用手机,它按预期工作。