我在不同的按钮点击上改变了一个变量(即在多个按钮的onclick监听器内部),我有一个textview,假设显示这个变量,但仍然在监听器代码之外。
textview不会更新变量,所以我想我可能需要一个' onclick'变量的处理程序版本。
我将如何做到这一点?
答案 0 :(得分:16)
当变量或类字段发生更改时,无法通知Java。您需要做的是为int实现一个简单的包装类,以便客户端可以在值发生变化时注册回调。这个类看起来像这样:
package com.example.android;
/**
* A store of an int value. You can register a listener that will be notified
* when the value changes.
*/
public class IntValueStore {
/**
* The current value.
*/
int mValue;
/**
* The listener (you might want turn this into an array to support many
* listeners)
*/
private IntValueStoreListener mListener;
/**
* Construct a the int store.
*
* @param initialValue The initial value.
*/
public IntValueStore(int initialValue) {
mValue = initialValue;
}
/**
* Sets a listener on the store. The listener will be modified when the
* value changes.
*
* @param listener The {@link IntValueStoreListener}.
*/
public void setListener(IntValueStoreListener listener) {
mListener = listener;
}
/**
* Set a new int value.
*
* @param newValue The new value.
*/
public void setValue(int newValue) {
mValue = newValue;
if (mListener != null) {
mListener.onValueChanged(mValue);
}
}
/**
* Get the current value.
*
* @return The current int value.
*/
public int getValue() {
return mValue;
}
/**
* Callbacks by {@link IntValueModel}.
*/
public static interface IntValueStoreListener {
/**
* Called when the value of the int changes.
*
* @param newValue The new value.
*/
void onValueChanged(int newValue);
}
}
现在您需要一些实现IntValueStoreListener接口的类。您可以将其设为Activity
,然后跟踪要更新的TextView
。我会实现一个简单的自定义TextView
,如下所示:
package com.example.android;
import com.example.android.IntValueStore.IntValueStoreListener;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.TextView;
public class IntTextView extends TextView implements IntValueStoreListener{
public IntTextView(Context context) {
super(context);
}
public IntTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public void onValueChanged(int newValue) {
// The int got a new value! Update the text
setText(String.valueOf(newValue));
}
}
您现在可以设置布局XML。例如:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/btn_increment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Increment" />
<Button
android:id="@+id/btn_double"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Double" />
<com.example.android.IntTextView
android:id="@+id/text_current_value"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
执行必要设置的活动如下所示:
package com.example.android;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
public class IntValueStoreActivity extends Activity {
private IntValueStore mIntValueModel = new IntValueStore(1);
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Initialize the text view with the initial value
IntTextView intTextView = (IntTextView)findViewById(R.id.text_current_value);
intTextView.setText(String.valueOf(mIntValueModel.getValue()));
// Setup the text view as a listener so it gets updated whenever the int
// value changes
mIntValueModel.setListener(intTextView);
// Setup an OnClickListener that will increment the int value by 1. The
// TextView will be automatically updated since it is setup as a
// listener to the int value store
findViewById(R.id.btn_increment).setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
mIntValueModel.setValue(mIntValueModel.getValue() + 1);
}
});
// Setup an OnClickListener that will double the int value. The TextView
// will be automatically updated since it is setup as a listener to the
// int value store
findViewById(R.id.btn_double).setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
mIntValueModel.setValue(mIntValueModel.getValue() * 2);
}
});
}
}
这将为您提供以下用户界面:
每当您点击任何按钮时,TextView
几乎会神奇地更新它显示的值,即使OnClickListeners没有任何代码可以触及TextView
!
这实际上是编程中常见的模式Model-view-controller。在上面的示例代码中,模型为IntValueStore
,视图为IntTextView
且没有控制器。
答案 1 :(得分:-1)
在C#中,有一种简单的方法可以在变量更改时触发某些操作,因此它在Java中。 Java afaik不支持运算符重载,但此功能不是必需的。当涉及面向类(对象)的编程时,只需从任何标准类型创建您的特殊类型。新类将扩展任何类型的函数(int,long,string等)。定义,例如你自己的“SET”和/或“GET”方法,只使用这些而不是标准的“=”或获取值/ ponter作为左操作数。
示例:
public class myINT
{
public int Value;
public void SET(int v) {Value = v; // PLUS additional ACTION }
public int GET(int v) {return Value ;}
public void ADD(int v) {Value += v; // PLUS additional ACTION }
public void SUB(int v) {Value -= v; // PLUS additional ACTION }
}