親クリックの展開可能なリストには、3つのテキストビューがある子があり、たとえば、別のテキストビューをクリックすると別のイベントを発生させたいと考えています。
for text view 1 output is hello
for text view 2 output is hi
for text view 3 output is heya
親クリックの展開可能なリストには、3つのテキストビューがある子があり、たとえば、別のテキストビューをクリックすると別のイベントを発生させたいと考えています。
for text view 1 output is hello
for text view 2 output is hi
for text view 3 output is heya
エドウィンが言ったように、コスチュームアダプターを作ることができます。各ビューで onClickListner() メソッドを設定できます。私がここでやったように..
class CustomAdapter extends ArrayAdapter<Contact>
{
LayoutInflater inflater=(LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
public CustomAdapter(Context context, int textViewResourceId,
ArrayList<Contact> strings) {
//let android do the initializing :)
super(context, textViewResourceId, strings);
}
//class for caching the views in a row
private class ViewHolder
{
TextView id,name,phn_no;
}
ViewHolder viewHolder;
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if(convertView==null)
{
//inflate the custom layout
convertView=inflater.inflate(R.layout.activity_main, null);
viewHolder=new ViewHolder();
//cache the views
viewHolder.id=(TextView) convertView.findViewById(R.id.contact_id_txt);
viewHolder.name=(TextView) convertView.findViewById(R.id.contact_name_txt);
viewHolder.phn_no=(TextView) convertView.findViewById(R.id.contact_ph_no_txt);
viewHolder.id.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(getApplicationContext(), "Hi!!", Toast.LENGTH_SHORT).show();
}
});
viewHolder.name.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "Hello!!", Toast.LENGTH_SHORT).show();
}
});
viewHolder.phn_no.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "Heya!!!", Toast.LENGTH_SHORT).show();
}
});
//link the cached views to the convertview
convertView.setTag(viewHolder);
}
else
viewHolder=(ViewHolder) convertView.getTag();
//set the data to be displayed
viewHolder.id.setText(contacts.get(position).get_id()+"");
viewHolder.name.setText(contacts.get(position).get_name());
viewHolder.phn_no.setText(contacts.get(position).get_phn_no());
//return the view to be displayed
return convertView;
}
}
ExpandableListView expandableListView;
expandableListView.setOnChildClickListener(new OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View v,
int groupPosition, int childPosition, long id) {
// TODO Auto-generated method stub
//////////////////////////Change your child text values here.
return false;
}
});
この方法を試してください:
public View getChildView(int groupPosition, int childPosition, boolean isLastChild,View convertView, ViewGroup parent) { if (convertView == null) { LayoutInflater infalInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE); convertView = infalInflater.inflate(R.layout.layout, null); } tv_ChildFieldId = (TextView) convertView.findViewById(R.id.tv1); tv_ChildFieldId.setText(getChildIdFromDB(groupPosition, childPosition).toString()); tv_ChildFieldId.setOnClickListener(new ID_OnClickListener()); //And so on return convertView; } /**Onclick Listener for the Textview*/ private class ID_OnClickListener implements OnClickListener { @Override public void onClick(View v) { } });
ここを見て ください カスタム拡張可能アダプタを定義できます
public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent)
このメソッド内で、親に対する子の位置を決定し、必要な oc クリック リスナーを設定できます。
そのため、展開可能なリスト用のカスタム アダプターを作成する必要があります。onClickListener
次に、カスタム アダプター クラスでさまざまなウィジェット インターフェイス用に実装します。
カスタム アダプター クラスで
@Override
public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
View convertView, ViewGroup parent) {
if (convertView == null) {
LayoutInflater infalInflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = infalInflater.inflate(R.layout.child_layout, null);
}
//Give your On click Implementations Here
return convertView;
}
あなたの活動を実装するOnChildClickListener
@Override
public boolean onChildClick(ExpandableListView parent, View v,
int groupPosition, int childPosition, long id) {
Toast.makeText(MainActivity.this, "Clicked On Child",
Toast.LENGTH_SHORT).show();
return true; //or false
}
上記の @edwin のメソッドは失敗しました! アクティビティにExpandableListView.onchildItemClickを実装しても、呼び出しは行われません。
この問題は、カスタムで複雑な ChildView がある場合に特に発生します。
私にとっては 、convertView自体にonclickListenerを設定することで機能しました。アダプターの内側から完璧なクリックが得られます。
convertView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(_context, groupPosition + " clicked "
+ childPosition, Toast.LENGTH_SHORT).show();
}
});
必ず外側に書いてください
if(convertView==null){.....layout inflation}
括弧。