web-dev-qa-db-ja.com

Androidの展開可能なリストビューはクリックに対する反応がなく、展開されません

拡張可能なリストビューがあります。ダミーデータをいくつか入れましたが、すべて問題ないようですが、アプリケーションを実行すると、すべてのグループが折りたたみモードになり、各グループをクリックしても有効になりません。これはスクリーンショットです:

enter image description here

グループのXMLは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="match_parent"
    Android:layout_height="wrap_content"
    Android:background="@color/bg_slider"
    Android:orientation="horizontal" >


    <TextView
        Android:id="@+id/tvRecipeName"
        style="@style/normal_text.bold"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:layout_alignParentLeft="true"
        Android:layout_centerVertical="true"
        Android:layout_marginLeft="50dp"
        Android:layout_marginRight="5dp"
        Android:focusable="false"
        Android:lines="1"
        Android:maxLines="1"
        Android:text="@string/dd_title" />


    <ImageButton
        Android:id="@+id/ibDeleteRecipe"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:layout_alignParentRight="true"
        Android:layout_centerVertical="true"
        Android:layout_marginRight="15dp"
        Android:background="@color/transparent"
        Android:contentDescription="@string/cd"
        Android:focusable="false"
        Android:src="@Android:drawable/ic_menu_delete" />

    <View
        Android:layout_width="1dp"
        Android:layout_height="50dp"
        Android:layout_alignParentLeft="true"
        Android:layout_toLeftOf="@+id/tvRecipeName"
        Android:focusable="false" />

</RelativeLayout>

子のXMLは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout 
    xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="match_parent"
    Android:layout_height="wrap_content"
    Android:background="@color/White"
    Android:gravity="left|center_vertical" >

    <View
        Android:layout_width="1dp"
        Android:layout_height="35dp"
        Android:layout_toLeftOf="@+id/tvIngredient"
        Android:focusable="false" />

    <TextView
        Android:id="@+id/tvIngredient"
        style="@style/normal_text_black"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:layout_alignParentLeft="true"
        Android:layout_centerVertical="true"
        Android:layout_marginLeft="30dp"
        Android:layout_marginRight="5dp"
        Android:lines="1"
        Android:maxLines="1"
        Android:text="@string/dd_title"
        Android:focusable="false" />

    <ImageButton
        Android:id="@+id/ibDeleteIngredient"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:layout_alignParentRight="true"
        Android:layout_centerVertical="true"
        Android:layout_marginRight="15dp"
        Android:background="@color/transparent"
        Android:contentDescription="@string/cd"
        Android:focusable="false"
        Android:src="@Android:drawable/btn_dialog" />

</RelativeLayout>

main.xmlでは、展開可能なリストの定義は次のとおりです。

<ExpandableListView
            Android:id="@+id/elv"
            Android:layout_width="match_parent"
            Android:layout_height="match_parent" />

私はそのためにこのコードを書いたアダプターを持っています:

public class ExpAdapter extends BaseExpandableListAdapter {

    private final String TAG = "ExpAdapter";
    private Context context;
    static final String arrGroupelements[] = {"India", "Australia", "England", "South Africa"};
    static final String arrChildelements[][] = { {"Sachin Tendulkar", "Raina", "Dhoni", "Yuvi" },
                                                 {"Ponting", "Adam Gilchrist", "Michael Clarke"},
                                                 {"Andrew Strauss", "kevin Peterson", "Nasser Hussain"},
                                                 {"Graeme Smith", "AB de villiers", "Jacques Kallis"} };

    public ExpAdapter(Context context) {
        this.context = context;

        Log.i(TAG, "Adapter created.");
    }


    @Override
    public Object getChild(int groupPosition, int childPosition) {
        return null;
    }

    @Override
    public long getChildId(int groupPosition, int childPosition) {

        return 0;
    }

    @Override
    public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {

        if (convertView == null) {
            LayoutInflater inflater =  (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            convertView = inflater.inflate(R.layout.elv_child, null);
        }

        TextView tvItem = (TextView) convertView.findViewById(R.id.tvIngredient);
        ImageButton ibDelete = (ImageButton) convertView.findViewById(R.id.ibDeleteIngredient);
        ibDelete.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                Log.i(TAG, "******");
            }
        });
        tvItem.setText(arrChildelements[groupPosition][childPosition]);

        return convertView;
    }

    @Override
    public int getChildrenCount(int groupPosition) {
        return arrChildelements[groupPosition].length;
    }

    @Override
    public Object getGroup(int groupPosition) {
        return null;
    }

    @Override
    public int getGroupCount() {
        return arrGroupelements.length;
    }

    @Override
    public long getGroupId(int groupPosition) {
        return 0;
    }

    @Override
    public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {

        if (convertView == null) {
            LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            convertView = inflater.inflate(R.layout.elv_group, null);
        }

        TextView tvItem = (TextView) convertView.findViewById(R.id.tvRecipeName);
        ImageButton ibDeleteRcipe = (ImageButton) convertView.findViewById(R.id.ibDeleteRecipe);
        ibDeleteRcipe.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                Log.i(TAG, "%%%%%%");
            }
        });
        tvItem.setText(arrGroupelements[groupPosition]);

        return convertView;
    }

    @Override
    public boolean hasStableIds() {
        return false;
    }

    @Override
    public boolean isChildSelectable(int groupPosition, int childPosition) {
        return true;
    }

}

そして最後に、フラグメントアクティビティのコードで私は持っています:

public class ShoppingList extends FragmentActivity {    
        ExpAdapter adapter = new ExpAdapter(this);
        //Linking expnadable list view
        expListView = (ExpandableListView) findViewById(R.id.elv);
        expListView.setAdapter(adapter);
        expListView.setOnGroupExpandListener(new OnGroupExpandListener() {
            @Override
            public void onGroupExpand(int groupPosition) {
                Log.i(TAG, "Group " + groupPosition + " expanded.");
            }
        });
        expListView.setOnGroupCollapseListener(new OnGroupCollapseListener() {
            @Override
            public void onGroupCollapse(int groupPosition) {
                Log.i(TAG, "Group " + groupPosition + " collapsed.");
            }
        });
        expListView.setOnChildClickListener(new OnChildClickListener() {
            @Override
            public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {
                Log.i(TAG, "item " + childPosition + " of group " + groupPosition + " clicked.");
                return false;
            }
        });

}

アプリケーションを実行して親をクリックしても、何も起こりません。ショッピングクラスの最後に次のコード行を追加しようとしました。

int count = adapter.getGroupCount();
for (int position = 1; position <= count; position++)
    expListView.expandGroup(position - 1);

これで、アプリケーションを実行すると、結果は次のスクリーンショットのようになります。

enter image description here

削除ボタン(親または子)をクリックすると、(logcatをチェックすると)それらが有効になっていることがわかりますが、子または親をクリックしても何も起こりません。だから、なぜコールバックが機能しないのか分かりません。私の調査に基づいて、画像ボタンのFocussablefalseに設定する必要があることがわかりました。 XMLファイルでわかるように、私はそれを実行しましたが、それでも親行と子行をクリックすると、応答が表示されません。

21
Hesam

ついに私は解決策を見つけました:)

バグなのか病気なのか...

上記のように、私の調査に基づいて、画像ビュー/ボックスのフォーカス機能を「false」に設定する必要があることがわかりました。 XMLファイルで実行しましたが、機能しませんでした。 XMLではfocus-abilityを「true」に設定し、コードではfalseに設定しました。このような:

@Override
    public View getGroupView(final int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {

        if (convertView == null) {
            LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            convertView = inflater.inflate(R.layout.elv_group, null);
        }

        TextView tvItem = (TextView) convertView.findViewById(R.id.tvRecipeName);
        ImageButton ibDeleteRcipe = (ImageButton) convertView.findViewById(R.id.ibDeleteRecipe);
        ibDeleteRcipe.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {               
                ...
            }
        });
        ibDeleteRcipe.setFocusable(false);

        tvItem.setText(arrGroupElements[groupPosition]);

        return convertView;
    }

したがって、私の業績に基づいています! XMLではなくコードでは「false」に設定する必要があります。さて、問題は違いは何ですか? -何も思いつきません。

31
Hesam

展開可能なリストビューアイテム内のフォーカス可能なビューのレイアウトxmlでAndroid:focusable="false"を定義する必要がありますが、 "ExpandableListView"属性では定義しないでください。

例:カスタムの親リストアイテムにチェックボックスが含まれている場合(自動的にフォーカスが取得されます)、次のようになります。

<CheckBox
   Android:id="@+id/cbkSelectDownload"
   Android:layout_width="wrap_content"
   Android:layout_height="wrap_content"
   Android:focusable="false"/>
3
Panduka DeSilva