我有一个按钮的ArrayList,我的OCL需要知道我按下了哪个索引。 计划是这样的:
MyOnClickListener onClickListener = new MyOnClickListener() {
@Override
public void onClick(View v) {
Intent returnIntent = new Intent();
returnIntent.putExtra("deleteAtIndex",idx);
setResult(RESULT_OK, returnIntent);
finish();
}
};
for (int i =0;i<buttonList.size();i++) {
buttonList.get(i).setText("Remove");
buttonList.get(i).setOnClickListener(onClickListener);
}
我的OCL实现方式如何?
目前我有这个:
public class MyOnClickListener implements OnClickListener{
int index;
public MyOnClickListener(int index)
{
this.index = index;
}
@Override
public void onClick(View arg0) {
}
}
但是,我不确定我在OCL的构造函数中需要做什么,以及覆盖onClick
函数。
答案 0 :(得分:8)
将setOnClickListener
设为按钮为:
buttonList.get(i).setOnClickListener(new MyOnClickListener(i));
编辑:
我需要在myOCL中完成一项活动,我该怎么做?
完成按钮上的活动单击非活动类,您需要将活动上下文传递给自定义OnClickListener:
buttonList.get(i).setOnClickListener(new MyOnClickListener(i, Your_Current_Activity.this));
并将自定义OnClickListener类的构造函数更改为:
int index;
Context context;
public MyOnClickListener(int index,Context context)
{
this.index = index;
this.context=context;
}
@Override
public void onClick(View arg0) {
// now finish Activity as\
context.finish();
// OR
// ((Activity)context).finish();
}
答案 1 :(得分:3)
View.OnClickListener myListener = new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.d("Button",v.getText().tostring);
}
});
您将获得视图中的按钮值,因此,您将找到哪个索引。
答案 2 :(得分:2)
更改for循环并每次创建新Object并在构造函数中传递索引。
for (int i =0;i<buttonList.size();i++) {
buttonList.get(i).setText("Remove");
buttonList.get(i).setOnClickListener(new MyOnClickListener(i));
}
您可以在onClick方法中获取索引。
答案 3 :(得分:0)
我不确定这是否适用于您的情况,但我希望为可点击元素创建一个自定义侦听器,以防止它们被点击两次(如果用户快速点击)。
我的解决方案是创建一个侦听器类,我将自定义Runnable传递给然后在第一次单击按钮时处理Runnable,但显然你可以传递任何自定义行为,这只是一个非常简单的插图如何使用它...
import android.content.Context;
import android.os.Handler;
import android.util.Log;
import android.view.View;
public class MyCustomOnClickListener implements View.OnClickListener {
public static final String TAG = MyCustomOnClickListener.class.getSimpleName();
private Runnable doOnClick;
private Context mContext;
private int isClicked = 0;
public MyCustomOnClickListener(Context c, Runnable doOnClick) throws Exception{
if(!(c instanceof Context) || !(doOnClick instanceof Runnable))
throw new Exception("MyCustomOnClickListener needs to be invoked with Context and Runnable params");
this.doOnClick = doOnClick;
this.mContext = c;
}
@Override
public void onClick(View view) {
Log.v(TAG,"onClick() - detected");
if(isClicked++ > 0)return; //this prevents multiple clicks
Log.d(TAG, String.format("onClick() - being processed. View.Tag = \"%s\"", view.getTag().toString()));
new Handler(mContext.getMainLooper()).post(doOnClick);
}
}
然后使用它(假设您处于this
上下文的活动中)...
try{
Button aButton = findViewById(R.id.someButton);
aButton.setOnClickListener(new MyCustomOnClickListener(/*context*/this, new Runnable(){
public void run(){
//here you would put whatever you would have otherwise put in the onClick handler. If you need the View that's being clicked you can replace the Runnable with a custom Runnable that passes the view along
}
}));
}catch(...){
}