所以我有一个带RunOnUiThread的AsyncTask来交互式地改变ui元素并添加TableRows,问题出在TableRows的监听器上。只有一个有效,但有些没有。这是我的代码中的一个简单的
public class SearchAsync extends AsyncTask<String, String, String> {
private Context mContext;
private Activity mAct;
@Override
protected void onPreExecute() {
super.onPreExecute();
}
public void mytask(Context context, Activity act) {
mContext = context;
mAct = act;
}
@Override
protected String doInBackground(final String... arg0) {
String sc2 = "Alpha";
mAct.runOnUiThread(new Runnable() {
@Override
public void run() {
GridLayout gey = (GridLayout) mAct.findViewById(R.id.greylayout);
TableLayout tbly = (TableLayout) mAct.findViewById(R.id.listviewtable);{
final TableRow tbro = new TableRow(mContext);
TextView tev = new TextView(mContext);
tbro.setBackground(mAct.getResources().getDrawable(R.drawable.mybgbg));
tev.setTextColor(Color.WHITE);
tev.setText(sc2);
tbro.addView(tev);
tbro.setOnClickListener(new View.OnClickListener() { // this listener doesn't work.
public void onClick(View v) {
System.out.println("yey! it works");
}
});
tbro.setOnLongClickListener(new View.OnLongClickListener(){ // this listener doesn't work too.
@Override
public boolean onLongClick(View v){
System.out.println("yey! it works too!");
return true;
}
});
tbro.setOnTouchListener(new View.OnTouchListener() { // this listener works perfectly.
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
tbro.setBackground(mAct.getResources().getDrawable(R.drawable.mybgi));
} else if (event.getAction() == MotionEvent.ACTION_UP || event.getAction() == MotionEvent.ACTION_CANCEL) {
tbro.setBackground(mAct.getResources().getDrawable(R.drawable.mybgbg));
}
return true;
}
});
tbro.setId(R.id.layoutx1);
tbro.setLongClickable(true);
tbro.setClickable(true);
tbly.addView(tbro);
}
}
}
TableRow tete = (TableRow)mAct.findViewById(R.id.layoutx1);
});
}
catch(JSONException e){
Log.e(TAG, "Json parsing error: " + e.getMessage());
);
}
}
return null;
}
@Override
protected void onPostExecute(String result) {
super.onPostExecute(null);
final String rslt;
rslt = result;
mAct.runOnUiThread(new Runnable() {
@Override
public void run() {
Toast toast = Toast.makeText(mContext, rslt, Toast.LENGTH_SHORT);
toast.show();
}
});
}
所以只有OnTouchListener有效,但其他人没有......我不知道为什么。 这只是runOnUiThread和runonmainthread中的一个问题。
我尝试了代码onPreExecute()方法和onPostExecute。什么都行不通。
但是在MainActivity中它运作得很好。
感谢您阅读我的问题。
答案 0 :(得分:0)
这种情况正在发生,因为您正在从true
返回onClick()
,这表示您已经消费了#34;&#34;事件。
View.OnTouchListener | Android Developers
触摸事件将在点击事件发生之前发生,因为ACTION_DOWN
会触发触摸事件,但您还需要ACTION_UP
才能获得点击事件。
当您从true
返回onTouch()
时,会消耗触摸事件,阻止ACTION_UP
触发点击事件。
作为一般准则,您不应同时使用OnTouchListener
和OnClickListener
。
看起来您只使用OnTouchListener
来更改背景。 StateListDrawable
会更好。您设置背景一次,状态列表负责其余部分:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/mybgi"
android:state_pressed="true"/>
<item
android:drawable="@drawable/mybgbg"/>
</selector>