0

所以我有一个带有 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 它工作得很好。

感谢您阅读我的问题。

4

1 回答 1

0

发生这种情况是因为您true从回来onClick(),这向系统表明您已经“消费”了该事件。

View.OnTouchListener | 安卓开发者

touch 事件会在 click 事件之前发生,因为 anACTION_DOWN会触发一个 touch 事件,但是你还需要 anACTION_UP才能有 click 事件。

当您从 中返回trueonTouch(),这会消耗触摸事件,从而阻止ACTION_UP触发单击事件。

作为一般准则,您不应该一起使用OnTouchListenerOnClickListener

看起来您正在使用OnTouchListeneronly 来更改背景。AStateListDrawable会更好。您设置一次背景,然后状态列表负责其余的工作:

<?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>

国家名单 | 可绘制资源 | 安卓开发者

于 2016-09-21T18:22:27.247 回答