web-dev-qa-db-ja.com

フラグメント内のrunOnUiThread

アクティビティをフラグメントに変換しようとしています。 runOnUiThreadのエラーマーク。過去に:

GoogleActivityV2はActivityから拡張されています。クラスExecuteTaskのrunOnUiThread。アクティビティにネストされたExecuteTaskクラス。

(OKを実行)今:

GoogleActivityV2はFragmentから拡張されています。クラスExecuteTaskのrunOnUiThread。アクティビティにネストされたExecuteTaskクラス。 (runOnUiThreadのエラー)

ここに私のコードがあります

public class GoogleActivityV2 extends SherlockMapFragment implements OnMapClickListener , OnMapLongClickListener , OnCameraChangeListener , TextWatcher {


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
        View rootView = inflater.inflate(R.layout.activity_googlev2, container, false);
        Init();
        adapter = new ArrayAdapter<String>(getActivity(), Android.R.layout.simple_dropdown_item_1line);
        textView = (AutoCompleteTextView) getView().findViewById(R.id.autoCompleteTextView1);
        return rootView;
    }

    public void onCameraChange(CameraPosition arg0){
        // TODO Auto-generated method stub
    }

    public void onMapLongClick(LatLng arg0){
        llLoc = arg0;
        stCommand = "onTouchEvent";
        lp = new ExecuteTask();
        lp.execute();
    }

    public void onMapClick(LatLng arg0){
        // TODO Auto-generated method stub
    }

    class ExecuteTask extends AsyncTask<String, String, String> {
        @Override
        protected void onPreExecute(){
            super.onPreExecute();
            if(stCommand.compareTo("AutoCompleteTextView") != 0) {
                pDialog = new ProgressDialog(getActivity());
                pDialog.setMessage(Html.fromHtml("<b>Search</b><br/>Loading ..."));
                pDialog.setIndeterminate(false);
                pDialog.setCancelable(false);
                pDialog.show();
            }
        }

        protected String doInBackground(String ... args){
            do something
            return null;
        }

        @Override
        protected void onPostExecute(String file_url){
            if(stCommand.compareTo("AutoCompleteTextView") != 0) pDialog.dismiss();
            runOnUiThread(new Runnable() {
                public void run(){
                    do something
                }
            });
        }
    }
    public void afterTextChanged(Editable s){
        // TODO Auto-generated method stub
    }

    public void beforeTextChanged(CharSequence s, int start, int count, int after){
        // TODO Auto-generated method stub
    }

    public void onTextChanged(CharSequence s, int start, int before, int count){
        // TODO Auto-generated method stub
    }
}

エラーは言う: Eclipse Error

このエラーを修正するにはどうすればよいですか?

103
Tai Dao

これを試してください:getActivity().runOnUiThread(new Runnable...

その理由は:

1)thisへの呼び出しの暗黙的なrunOnUiThreadは、フラグメントではなくAsyncTaskを参照しています。

2) FragmentにはrunOnUiThreadがありません。

ただし、Activityはそうです。

Activityは、既にメインスレッドにいる場合はRunnableを実行するだけであり、そうでない場合はHandlerを使用することに注意してください。 Handlerのコンテキストを気にしたくない場合は、フラグメントにthis を実装できます。実際には非常に簡単です:

// A class instance
private Handler mHandler = new Handler(Looper.getMainLooper());

// anywhere else in your code
mHandler.post(<your runnable>);
// ^ this will always be run on the next run loop on the main thread.

編集:@rciovatiは正しいです、あなたはonPostExecuteにいます、それはすでにメインスレッド上にあります。

237
bclymer

Xamarin.Androidで

フラグメントの場合:

this.Activity.RunOnUiThread(() => { yourtextbox.Text="Hello"; });

アクティビティの場合:

RunOnUiThread(() => { yourtextbox.Text="Hello"; });

ハッピーコーディング:-)

2
Ripdaman Singh

これを使用して、フラグメントの日付と時刻を取得しました。

private Handler mHandler = new Handler(Looper.getMainLooper());
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {

    // Inflate the layout for this fragment
    View root = inflater.inflate(R.layout.fragment_head_screen, container, false);

    dateTextView =  root.findViewById(R.id.dateView);
    hourTv = root.findViewById(R.id.hourView);

        Thread thread = new Thread() {
        @Override
        public void run() {
            try {
                while (!isInterrupted()) {
                    Thread.sleep(1000);
                    mHandler.post(new Runnable() {
                        @Override
                        public void run() {
                            //Calendario para obtener fecha & hora
                            Date currentTime = Calendar.getInstance().getTime();
                            SimpleDateFormat date_sdf = new SimpleDateFormat("dd/MM/yyyy");
                            SimpleDateFormat hour_sdf = new SimpleDateFormat("HH:mm a");

                            String currentDate = date_sdf.format(currentTime);
                            String currentHour = hour_sdf.format(currentTime);

                            dateTextView.setText(currentDate);
                            hourTv.setText(currentHour);
                        }
                    });
                }
            } catch (InterruptedException e) {
                Log.v("InterruptedException", e.getMessage());
            }
        }
    };
}
0
Irving Kennedy