擴充的ListView執行個體

來源:互聯網
上載者:User

            今天從網上看了個擴充的listView的例子,感覺還蠻炫,自己也試著做了下。

           由於比較簡單,所有就直接上代碼:

         

public class ExtendedListView extends ExpandableListActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {// TODO Auto-generated method stubsuper.onCreate(savedInstanceState);MyExpandableListAdapter adapter=new MyExpandableListAdapter();setListAdapter(adapter);}public class MyExpandableListAdapter extends BaseExpandableListAdapter{        public String[] groups={"我的好友","大學同學","高中同學"};        public String[][] childrens={{"小張","小李","小麗","向明"},{"向明","向明","向明","向明"},{"向明","向明","向明","向明"}};public Object getChild(int groupPosition, int childPosition) {// TODO Auto-generated method stubreturn childrens[groupPosition][childPosition];}public long getChildId(int groupPosition, int childPosition) {// TODO Auto-generated method stubreturn childPosition;}public View getChildView(int groupPosition, int childPosition,boolean isLastChild, View convertView, ViewGroup parent) {// TODO Auto-generated method stubTextView textView=getGenericView();    textView.setText(getChild(groupPosition, childPosition).toString());return textView;}//建立一個TextView public TextView getGenericView() {            // Layout parameters for the ExpandableListView            AbsListView.LayoutParams lp = new AbsListView.LayoutParams(                    ViewGroup.LayoutParams.MATCH_PARENT, 64);            TextView textView = new TextView(ExtendedListView.this);            textView.setLayoutParams(lp);            // Center the text vertically            textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);            // Set the text starting position            textView.setPadding(36, 0, 0, 0);            return textView;        }        public int getChildrenCount(int groupPosition) {// TODO Auto-generated method stubreturn childrens[groupPosition].length;}public Object getGroup(int groupPosition) {// TODO Auto-generated method stubreturn groups[groupPosition];}public int getGroupCount() {// TODO Auto-generated method stubreturn groups.length;}public long getGroupId(int groupPosition) {// TODO Auto-generated method stubreturn groupPosition;}public View getGroupView(int groupPosition, boolean isExpanded,View convertView, ViewGroup parent) {// TODO Auto-generated method stubTextView textView = getGenericView();            textView.setText(getGroup(groupPosition).toString());return textView;}public boolean hasStableIds() {// TODO Auto-generated method stubreturn true;}public boolean isChildSelectable(int groupPosition, int childPosition) {// TODO Auto-generated method stubreturn true;}}}

      看一下運行在模擬器上的效果:

    

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.