【Android】树形菜单、扩展下拉菜单android.widget.ExpandableListView

我引用的一位网友的,记录下来,以后慢慢来修改,在2.2上运行过,是可以的,xml里不需要配置
http://www.apkbus.com/forum.php?mod=viewthread&tid=1972&extra=
package com.test;

//参照这位同学的:http://www.apkbus.com/forum.php?mod=viewthread&tid=1972
import java.util.ArrayList;
import java.util.List;
import android.app.Activity;
import android.os.Bundle;
import android.view.ViewGroup.LayoutParams;
import android.widget.ExpandableListView;
import android.widget.ViewFlipper;

public class Menu1Activity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

// 数据源
// 标题
List<String> groupArray = new ArrayList<String>();
// 子标题
List<List<String>> childArray = new ArrayList<List<String>>();
groupArray.add("第一章");
groupArray.add("第二章");
List<String> tempArray01 = new ArrayList<String>();
tempArray01.add("第1.1节");
tempArray01.add("第1.2节");
tempArray01.add("第1.3节");

List<String> tempArray02 = new ArrayList<String>();
tempArray02.add("第2.1节");
tempArray02.add("第2.2节");
tempArray02.add("第2.3节");

childArray.add(tempArray01);
childArray.add(tempArray02);

ExpandableListView expandableListView = new ExpandableListView(this);

ExpandableAdapter adapter = new ExpandableAdapter(this, groupArray,
childArray);

expandableListView.setAdapter(adapter);

addContentView(expandableListView, new LayoutParams(
LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
}
}

//////////////////////////////////////////////////////////////////////////////////
package com.test;

import java.util.ArrayList;
import java.util.List;
import android.app.Activity;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AbsListView;
import android.widget.BaseExpandableListAdapter;
import android.widget.TextView;
public class ExpandableAdapter extends BaseExpandableListAdapter {
               
        private List<String> groupArray;
        private List<List<String>> childArray;
        private Activity activity;
        public ExpandableAdapter(Activity a,List<String> groupArray,List<List<String>> childArray) {
                activity = a;
                this.groupArray = groupArray;
                this.childArray = childArray;
        }
       
        @Override
        public Object getChild(int groupPosition, int childPosition) {
                // TODO Auto-generated method stub
                return childArray.get(groupPosition).get(childPosition);
        }
        @Override
        public long getChildId(int groupPosition, int childPosition) {
                // TODO Auto-generated method stub
                return childPosition;
        }
        @Override
        public View getChildView(int groupPosition, int childPosition,
                        boolean isLastChild, View convertView, ViewGroup parent) {
                // TODO Auto-generated method stub
                String string = childArray.get(groupPosition).get(childPosition);
                return getGenericView(string);
        }
        @Override
        public int getChildrenCount(int groupPosition) {
                // TODO Auto-generated method stub
                return childArray.get(groupPosition).size();
        }
        @Override
        public Object getGroup(int groupPosition) {
                // TODO Auto-generated method stub
                return groupArray.get(groupPosition);
        }
        @Override
        public int getGroupCount() {
                // TODO Auto-generated method stub
                return groupArray.size();
        }
        @Override
        public long getGroupId(int groupPosition) {
                // TODO Auto-generated method stub
                return groupPosition;
        }
        @Override
        public View getGroupView(int groupPosition, boolean isExpanded,
                        View convertView, ViewGroup parent) {
                // TODO Auto-generated method stub
                String string = groupArray.get(groupPosition);
                return getGenericView(string);
        }
        @Override
        public boolean hasStableIds() {
                // TODO Auto-generated method stub
                return false;
        }
        @Override
        public boolean isChildSelectable(int groupPosition, int childPosition) {
                // TODO Auto-generated method stub
                return false;
        }
       
/****************************************以下为自定义方法*********************************************/       
        /**
         * Children 's View
         * @param string
         * @return
         */
        public TextView getGenericView(String string) {
                AbsListView.LayoutParams layoutParams = new AbsListView.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, 64);
                TextView text = new TextView(activity);
                text.setLayoutParams(layoutParams);
                // Center the text vertically
                text.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);
                // Set the text starting position
                text.setPadding(36, 0, 0, 0);
                text.setText(string);
                return text;
        }
}

你可能感兴趣的:(PHP,xml,android,OS)