I want to get checked radio button from list view from list item like below image.
public void onRadioButtonClick(View v) {
RadioButton rb = (RadioButton) v;
Toast.makeText(getApplicationContext(),
rb.getText(),Toast.LENGTH_SHORT).show();
View Rg = (View) rb.getParent();
View LLayout = (View) Rg.getParent();
TextView txtLvId = (TextView) LLayout.findViewById(R.id.ins_itemid);
String LvID = txtLvId.getText().toString();
Toast.makeText(getApplicationContext(), LvID, Toast.LENGTH_LONG).show();
}