0

ExpandableListview でグループをクリックしたときにアクティビティを表示したいのですが、子リストではなく新しいアクティビティを開くために onGroupExpand にインテントを設定しようとしました。ただし、アクティビティを開くだけの場合。グループをクリックすると下に表示されます。ここに私のコードがあります

package pack.ExpandableListtwo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import android.app.ExpandableListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ExpandableListAdapter;
import android.widget.ExpandableListView;
import android.widget.SimpleExpandableListAdapter;

 public class ExpandableListDemo extends ExpandableListActivity {

@SuppressWarnings("unchecked")
public void onCreate(Bundle savedInstanceState) {
    try {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.main);

    SimpleExpandableListAdapter expListAdapter =
        new SimpleExpandableListAdapter(
                this,
                createGroupList(),              
                R.layout.group_row,                         
                new String[] { "Group Item" },  
                new int[] { R.id.row_name },                        
                createChildList(),              
                R.layout.child_row,             
                new String[] {"Sub Item"},      
                new int[] { R.id.grp_child}     
            );
        setListAdapter( expListAdapter );       

    }catch(Exception e){
        System.out.println("Errrr +++ " + e.getMessage());
    }
}

/* Creating the Hashmap for the row */
@SuppressWarnings("unchecked")
private List createGroupList() {
      ArrayList result = new ArrayList();
      for( int i = 0 ; i < 3 ; ++i ) { // 3 groups........
        HashMap m = new HashMap();
        m.put( "Group Item","Group Item " + i ); // the key and it's value.
        result.add( m );
      }
      return (List)result;
}

/* creatin the HashMap for the children */
@SuppressWarnings("unchecked")
private List createChildList() {

    ArrayList result = new ArrayList();
    for( int i = 0 ; i < 3 ; ++i ) { // this -3 is the number of groups(Here it's fifteen)
      /* each group need each HashMap-Here for each group we have 3 subgroups */
      ArrayList secList = new ArrayList(); 
      Intent intent = new Intent(getApplicationContext(),
              MainActivity.class);
      startActivity(intent);
     result.add( secList );
    }        
    return result;
}
public void  onContentChanged  () {
    System.out.println("onContentChanged");
    super.onContentChanged();         
}
/* This function is called on each child click */
public boolean onChildClick( ExpandableListView parent, View v, int groupPosition,int childPosition,long id) {


        return true;
    } 

/* This function is called on expansion of the group */
public void  onGroupExpand  (int groupPosition) {
    try{
         System.out.println("Group exapanding Listener => groupPosition = " + groupPosition);

    }catch(Exception e){
        System.out.println(" groupPosition Errrr +++ " + e.getMessage());

        Intent intent = new Intent(getApplicationContext(),
                MainActivity.class);
             startActivity(intent);

    }
}  
}
4

1 に答える 1

0

Aleksが言ったように、すべてのアクティビティに単一のレイアウトしか含めることができないため、ExpnadibleListViewの下に配置できる、ある種の下から上へのアニメーションを使用したり、可視性を使用して同じxmlで別のレイアウトを非表示および表示したりできます。

于 2013-07-09T08:43:58.877 に答える