Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/205.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android将listview中的选定项传递到弹出菜单_Android_Listview_Popupmenu - Fatal编程技术网

Android将listview中的选定项传递到弹出菜单

Android将listview中的选定项传递到弹出菜单,android,listview,popupmenu,Android,Listview,Popupmenu,我想将所选项目“id”从listview传递到弹出菜单,主活动: public class ListChildrenActivity extends AppCompatActivity implements Config, PopupMenu.OnMenuItemClickListener { private static final String TAG = "ListChildrenActivity"; ProgressDialog progressDialog; Toolbar tool

我想将所选项目“id”从listview传递到弹出菜单,主活动:

public class ListChildrenActivity extends AppCompatActivity implements Config, PopupMenu.OnMenuItemClickListener {
private static final String TAG = "ListChildrenActivity";

ProgressDialog progressDialog;
Toolbar toolbar;
ChildrenAdapter adapter;
ListView listView;
int idConnexion, id;
private SwipeRefreshLayout refreshLayout;
Intent intent;
Child childObj;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_list_child);

    toolbar = (Toolbar) findViewById(R.id.toolbar_actionbar);
    setSupportActionBar(toolbar);
    getSupportActionBar().setTitle("Listes des enfants");
    toolbar.setNavigationIcon(R.drawable.back);
    toolbar.setNavigationOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(getBaseContext(), MainMedecinActivity.class);
            startActivity(intent);
        }
    });

    refreshLayout = (SwipeRefreshLayout) findViewById(R.id.swipe_layout);
    refreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
        @Override
        public void onRefresh() {
            showChildren();
        }
    });




    showChildren();

    listView = (ListView) findViewById(R.id.listview);
    listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        public void onItemClick(AdapterView<?> myAdapter, View view, int itemInt, long lng) {
            //String selectedFromList =(String) (lv.getItemAtPosition(myItemInt));

            //Toast.makeText(ListChildrenActivity.this, selectedFromList, Toast.LENGTH_SHORT).show();
            //TextView v = (TextView)view.findViewById(R.id.tv);
            //String itemId = v.getText().toString();
            childObj = (Child) listView.getItemAtPosition(itemInt);
            id = childObj.getIdEnfant();
            Toast.makeText(ListChildrenActivity.this, ""+id, Toast.LENGTH_SHORT).show();


        }
    });
}

public void showMenu(View v) {
    PopupMenu popup = new PopupMenu(this, v);
    popup.setOnMenuItemClickListener(this);
    popup.inflate(R.menu.poupup_menu);
    popup.show();
}

private ArrayList<Child> generateData(String content) {
    ArrayList<Child> children = new ArrayList<Child>();
    JSONObject jObj = null;
    JSONArray ja = null;
    try {
        ja = new JSONArray(content);
        for (int i = 0; i < ja.length(); i++) {
            jObj = ja.getJSONObject(i);
            children.add(new Child(jObj.getInt("idEnfant"), jObj.getString("nomEnfant"), jObj.getString("prenomEnfant")));
        }
    } catch (JSONException e) {
        e.printStackTrace();
    }

    return children;
}

public void showChildren() {

    if (!validate()) {
        failed();
        return;
    }

    SharedPreferences prefs = getSharedPreferences("Info_Connexion", Context.MODE_PRIVATE);
    idConnexion = prefs.getInt("idConnexion", 0);

    progressDialog = new ProgressDialog(ListChildrenActivity.this);
    progressDialog.setIndeterminate(true);
    progressDialog.setMessage("La liste des enfants ...");
    progressDialog.show();

    if (isOnline()) {
        requestData(SERVER_URL + "enfant/read/", idConnexion);
    } else {
        Toast.makeText(ListChildrenActivity.this, "Eroor network", Toast.LENGTH_SHORT).show();

    }
}

private void requestData(String url, int id) {
    DateFormat df = new SimpleDateFormat("MM/dd/yyyy");
    RequestPackage p = new RequestPackage();
    p.setMethod("POST");
    p.setUri(url);
    p.setParam("idMedecin", String.valueOf(id));

    MessagesTask task = new MessagesTask();
    task.execute(p);
}

protected boolean isOnline() {
    ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo netInfo = cm.getActiveNetworkInfo();
    return netInfo != null && netInfo.isConnectedOrConnecting();
}

public void success(final int id, final ProgressDialog progressDialog, String content, SwipeRefreshLayout refreshLayout) {

    // 1. pass context and data to the custom adapter
    adapter = new ChildrenAdapter(this, generateData(content));

    // 2. Get ListView from activity_main.xml


    // 3. setListAdapter
    listView.setAdapter(adapter);
    if (id != 0) {
        refreshLayout.setRefreshing(false);
        progressDialog.dismiss();
    } else {
        refreshLayout.setRefreshing(false);
        progressDialog.dismiss();
        Toast.makeText(ListChildrenActivity.this, "Eroor server or input", Toast.LENGTH_SHORT).show();
    }


}

public boolean validate() {
    boolean valid = true;

    return valid;
}

public void failed() {
    Toast.makeText(getBaseContext(), "List Children failed", Toast.LENGTH_LONG).show();
}


@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
       case android.R.id.home:
            onBackPressed();
            return true;

    }
    return super.onOptionsItemSelected(item);
}

@Override
public boolean onMenuItemClick(MenuItem item) {
    TextView scoreView = (TextView) findViewById(R.id.score);
    switch (item.getItemId()) {
        case R.id.infos:
            intent = new Intent(getBaseContext(), ChildInformationsActivity.class);
            intent.putExtra("idEnfant", id );
            startActivity(intent);
            return true;
        case R.id.signes_diagnostic:
            intent = new Intent(getBaseContext(), ChildSignesDiagnosticActivity.class);
            intent.putExtra("idEnfant", id);
            startActivity(intent);
            return true;
        case R.id.bilan_bio:
            intent = new Intent(getBaseContext(), ChildBilanBioActivity.class);
            intent.putExtra("idEnfant", id);
            startActivity(intent);
            return true;
        case R.id.traitement_medical:
            intent = new Intent(getBaseContext(), ChildTraitementMedicalActivity.class);
            intent.putExtra("idEnfant", id);
            startActivity(intent);
            return true;
        case R.id.imagerie:
            intent = new Intent(getBaseContext(), ChildImagerieActivity.class);
            intent.putExtra("idEnfant", id);
            startActivity(intent);
            return true;
        default:
            return false;
    }
}


private class MessagesTask extends AsyncTask<RequestPackage, String, String> {

    @Override
    protected String doInBackground(RequestPackage... params) {

        String content = HttpManager.getData(params[0]);

        return content;
    }

    @Override
    protected void onPreExecute() {
        System.out.println("onPreExecute");
    }

    @Override
    protected void onPostExecute(String content) {
        Log.i(TAG, "------------------------" + content);

        success(idConnexion, progressDialog, content, refreshLayout);

    }
}

}

您可以使用接口在它们之间进行通信

在适配器类中,初始化

private OnItemSelectedListener mListener;
并添加这些方法

  public void setOnItemClickLister(OnItemSelectedListener mListener) {
        this.mListener = mListener;
    }
//Creating an interface

    public interface OnItemSelectedListener {
        public void onItemSelected(String s);
    }
适配器中的in-onClick函数

用这个

  mListener.onItemSelected(id);
//id is your string
你可以在MainActivity中调用它

    adapter.setOnItemClickLister(new OnItemSelectedListener() {
               @Override
               public void onItemSelected(String s) {
//you will get the string here, you can pass it as an argument in popup menu


       }
         });

您可以使用接口在它们之间进行通信

在适配器类中,初始化

private OnItemSelectedListener mListener;
并添加这些方法

  public void setOnItemClickLister(OnItemSelectedListener mListener) {
        this.mListener = mListener;
    }
//Creating an interface

    public interface OnItemSelectedListener {
        public void onItemSelected(String s);
    }
适配器中的in-onClick函数

用这个

  mListener.onItemSelected(id);
//id is your string
你可以在MainActivity中调用它

    adapter.setOnItemClickLister(new OnItemSelectedListener() {
               @Override
               public void onItemSelected(String s) {
//you will get the string here, you can pass it as an argument in popup menu


       }
         });
在适配器侧:

view.findViewById(R.id.menu_btn).setTag(id);
在ListActivity端:

public void showPopUp(View v){
        currentId = v.getTag().toString();
        PopupMenu popupMenu=new PopupMenu(this,v);
        popupMenu.setOnMenuItemClickListener(ListActivity.this);
        MenuInflater inflater=popupMenu.getMenuInflater();
        inflater.inflate(R.menu.my_pop_up,popupMenu.getMenu());
        popupMenu.show();
    }
在XML方面:

<ImageButton android:id="@+id/menu_btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/ic_overflow"
            android:layout_marginStart="10dp"
            android:layout_marginEnd="20dp"
            android:layout_alignParentEnd="true"
            android:layout_centerVertical="true"
            android:onClick="showPopUp"/>

注意:onClick=“showPopUp”在这里非常关键。 这应该是有帮助的。谢谢。

在适配器端:

view.findViewById(R.id.menu_btn).setTag(id);
在ListActivity端:

public void showPopUp(View v){
        currentId = v.getTag().toString();
        PopupMenu popupMenu=new PopupMenu(this,v);
        popupMenu.setOnMenuItemClickListener(ListActivity.this);
        MenuInflater inflater=popupMenu.getMenuInflater();
        inflater.inflate(R.menu.my_pop_up,popupMenu.getMenu());
        popupMenu.show();
    }
在XML方面:

<ImageButton android:id="@+id/menu_btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/ic_overflow"
            android:layout_marginStart="10dp"
            android:layout_marginEnd="20dp"
            android:layout_alignParentEnd="true"
            android:layout_centerVertical="true"
            android:onClick="showPopUp"/>

注意:onClick=“showPopUp”在这里非常关键。
这应该是有帮助的。谢谢。

谢谢你的回答,但是我在adapter.setOnItemClickListerId中得到了NullPointerException。初始化之前你调用它了吗?你必须在success Functions中调用它。谢谢你,但我不能重写adapter中的onClick函数。你可以在adapter类中初始化relativelayout row\u子级,在getView()中初始化setOnClickListenerfunction.thank您的回答,但我在adapter.SetOnItemClickListerId中得到了NullPointerException您在初始化之前调用它了吗?您必须在success Functions中调用它,谢谢,但我不能在adapter中重写onClick函数您可以在adapter类中初始化relativelayout row\u子级,在getView()中初始化setOnClickListener你能给我解释一下答案吗?我必须尽快实施。你能给我解释一下答案吗?我必须尽快实施