0

私はsherlockListFragmentsを使用してsqliteデータベースからリストを表示しています。リストからアイテムのリストを削除するためにコンテキストアクションバーを使用したいと思います。

助けてくれてありがとう。

4

1 に答える 1

0

コーディングで簡単にできます

public void onActivityCreated(Bundle savedInstanceState) {





    TextView textView;
    Log.i("live", "onActivityCreated");
    super.onActivityCreated(savedInstanceState);
    mActionMode=null;

    setEmptyText("Loading...");


    myModeListener=new OnItemClickListener() {




        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position,
                long id) {

            pos[length]=position;




            mActionMode=getSherlockActivity().startActionMode(new mCallBack());
            Log.i("asa",Integer.toString(pos[length]));
            length++;




        }



    };




    myStocksadapter = new SimpleCursorAdapter(getActivity().getApplicationContext(),R.layout.delete, null, new String[] {DBConstants.NAME}, new int[] {android.R.id.text1},0);
    setListAdapter(myStocksadapter);
    mycontext=this;
    //textView=(TextView)findViewById(android.R.id.text1);

    getActivity().getSupportLoaderManager().initLoader(0, null, mycontext);

    Log.i("sss","before action bar");





}
于 2013-02-25T14:49:52.350 に答える