Android学习笔记 - SlidingDrawer 和 ExpandableListView

我们来看一下官方文档中对这个控件 的定义:

SlidingDrawer hides content out of the screen and allows the user to drag a handle to bring the content on screen. SlidingDrawer can be used vertically or horizontally. A special widget composed of two children views: the handle, that the users drags, and the content, attached to the handle and dragged with it. SlidingDrawer should be used as an overlay inside layouts. This means SlidingDrawer should only be used inside of a FrameLayout or a RelativeLayout for instance. The size of the SlidingDrawer defines how much space the content will occupy once slid out so SlidingDrawer should usually use match_parent for both its dimensions. Inside an XML layout, SlidingDrawer must define the id of the handle and of the content:

其实android1.5的应用程序列表就应用了这个控件。

我们来看一下它特有的xml属性

XML Attributes
Attribute Name Related Method Description
android:allowSingleTap   Indicates whether the drawer can be opened/closed by a single tap on the handle. 
android:animateOnClick   Indicates whether the drawer should be opened/closed with an animation when the user clicks the handle. 
android:bottomOffset   Extra offset for the handle at the bottom of the SlidingDrawer. 
android:content   Identifier for the child that represents the drawer's content. 
android:handle   Identifier for the child that represents the drawer's handle. 
android:orientation   Orientation of the SlidingDrawer. 
android:topOffset   Extra offset for the handle at the top of the SlidingDrawer. 
这里都很清楚了,英文也很简单,我就不多说 了,直接上demo。

先来看一下最终的效果截个图:


两张图分别对应SlidingDrawer关闭时和打开时的视图


看一下layout的定义

[html]  view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <SlidingDrawer xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:id="@+id/drawer" android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent" android:handle="@+id/handle"  
  5.     android:content="@+id/content">  
  6.   
  7.     <ImageView android:id="@id/handle" android:layout_width="wrap_content"  
  8.         android:layout_height="wrap_content" android:src="@drawable/up"></ImageView>  
  9.     <ListView android:id="@id/content" android:layout_width="fill_parent"  
  10.         android:layout_height="fill_parent" android:background="#ff00ff"></ListView>  
  11.   
  12. </SlidingDrawer>  

这里在SlidingDrawer元素里必须指定它的handle和content属性

再看一下Activity的实现:

[java]  view plain copy
  1. package kevin.droid;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.view.View;  
  6. import android.widget.AdapterView;  
  7. import android.widget.AdapterView.OnItemClickListener;  
  8. import android.widget.ArrayAdapter;  
  9. import android.widget.ImageView;  
  10. import android.widget.ListView;  
  11. import android.widget.SlidingDrawer;  
  12. import android.widget.SlidingDrawer.OnDrawerCloseListener;  
  13. import android.widget.SlidingDrawer.OnDrawerOpenListener;  
  14. import android.widget.Toast;  
  15.   
  16. public class SlidingDemo extends Activity implements OnItemClickListener,  
  17.         OnDrawerOpenListener, OnDrawerCloseListener {  
  18.     private SlidingDrawer drawer;  
  19.     private ImageView handle;  
  20.     private ListView content;  
  21.   
  22.     @Override  
  23.     public void onCreate(Bundle savedInstanceState) {  
  24.         super.onCreate(savedInstanceState);  
  25.         setContentView(R.layout.sliding);  
  26.   
  27.         drawer = (SlidingDrawer) this.findViewById(R.id.drawer);  
  28.         handle = (ImageView) this.findViewById(R.id.handle);  
  29.         content = (ListView) this.findViewById(R.id.content);  
  30.         content.setAdapter(new ArrayAdapter<String>(this,  
  31.                 android.R.layout.simple_list_item_1, new String[] { "one",  
  32.                         "two""three" }));  
  33.         content.setOnItemClickListener(this);  
  34.   
  35.         // 设置SlidingDrawer打开或者关闭时的监听器  
  36.         drawer.setOnDrawerOpenListener(this);  
  37.         drawer.setOnDrawerCloseListener(this);  
  38.     }  
  39.   
  40.     @Override  
  41.     public void onItemClick(AdapterView<?> parent, View view, int position,  
  42.             long id) {  
  43.         Toast.makeText(this"you clicked position " + (position + 1),  
  44.                 Toast.LENGTH_SHORT).show();  
  45.     }  
  46.   
  47.     // SlidingDrawer关闭时回调  
  48.     @Override  
  49.     public void onDrawerClosed() {  
  50.         handle.setImageResource(R.drawable.up);  
  51.     }  
  52.   
  53.     // SlidingDrawer打开时回调  
  54.     @Override  
  55.     public void onDrawerOpened() {  
  56.         handle.setImageResource(R.drawable.down);  
  57.     }  
  58.   
  59. }  


它最重要的两个方法就是在代码中提到的

void setOnDrawerCloseListener( SlidingDrawer.OnDrawerCloseListener onDrawerCloseListener)
Sets the listener that receives a notification when the drawer becomes close.
void setOnDrawerOpenListener( SlidingDrawer.OnDrawerOpenListener onDrawerOpenListener)
Sets the listener that receives a notification when the drawer becomes open.



ExpandableListView




喜欢显示好友QQ那样的列表,可以展开,可以收起,在android中,以往用的比较多的是listview,虽然可以实现列表的展示,但在某些情况下,我们还是希望用到可以分组并实现收缩的列表,那就要用到android的ExpandableListView,今天研究了一下这个的用法,也参考了很多资料动手写了一个小demo,实现了基本的功能,但界面优化方面做得还不够好,有待改进,素材采用了Q版三国杀武将的图片,很有爱哈哈,下面直接上效果图以及源代码~! 

                   

 

 

main.xml的布局很简单啦,只是一个ExpandableListView 就OK了

但值得简单说下的是 android:cacheColorHint="#00000000",这个设置可以去除拖动view时背景变成黑色的效果

android:listSelector="#00000000" ,可以去除选中时的黄色底色

 

复制代码
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="fill_parent"
 4     android:layout_height="fill_parent"
 5     android:orientation="vertical" >
 6     <ExpandableListView 
 7         android:id="@+id/list"
 8         android:layout_width="fill_parent"
 9         android:layout_height="fill_parent"
10         android:background="#ffffff"
11         android:cacheColorHint="#00000000"
12         android:listSelector="#00000000" 
13         >
14     </ExpandableListView> 
15  </LinearLayout>  
16 
复制代码

 


java代码: 

 

复制代码
package com.eyu.activity_test;

import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.widget.AbsListView;
import android.widget.BaseExpandableListAdapter;
import android.widget.ExpandableListAdapter;
import android.widget.ExpandableListView;
import android.widget.ExpandableListView.OnChildClickListener;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;

public  class ExpandableList  extends Activity{

     protected  void onCreate(Bundle savedInstanceState) {
         //  TODO Auto-generated method stub
         super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.main);

         final ExpandableListAdapter adapter =  new BaseExpandableListAdapter() {
             // 设置组视图的图片
             int[] logos =  new  int[] { R.drawable.wei, R.drawable.shu,R.drawable.wu};
             // 设置组视图的显示文字
             private String[] generalsTypes =  new String[] { "魏", "蜀", "吴" };
             // 子视图显示文字
             private String[][] generals =  new String[][] {
                    { "夏侯惇", "甄姬", "许褚", "郭嘉", "司马懿", "杨修" },
                    { "马超", "张飞", "刘备", "诸葛亮", "黄月英", "赵云" },
                    { "吕蒙", "陆逊", "孙权", "周瑜", "孙尚香" }

            };
             // 子视图图片
             public  int[][] generallogos =  new  int[][] {
                    { R.drawable.xiahoudun, R.drawable.zhenji,
                            R.drawable.xuchu, R.drawable.guojia,
                            R.drawable.simayi, R.drawable.yangxiu },
                    { R.drawable.machao, R.drawable.zhangfei,
                            R.drawable.liubei, R.drawable.zhugeliang,
                            R.drawable.huangyueying, R.drawable.zhaoyun },
                    { R.drawable.lvmeng, R.drawable.luxun, R.drawable.sunquan,
                            R.drawable.zhouyu, R.drawable.sunshangxiang } };
            
             // 自己定义一个获得文字信息的方法
            TextView getTextView() {
                AbsListView.LayoutParams lp =  new AbsListView.LayoutParams(
                        ViewGroup.LayoutParams.FILL_PARENT, 64);
                TextView textView =  new TextView(
                        ExpandableList. this);
                textView.setLayoutParams(lp);
                textView.setGravity(Gravity.CENTER_VERTICAL);
                textView.setPadding(36, 0, 0, 0);
                textView.setTextSize(20);
                textView.setTextColor(Color.BLACK);
                 return textView;
            }

            
             // 重写ExpandableListAdapter中的各个方法
            @Override
             public  int getGroupCount() {
                 //  TODO Auto-generated method stub
                 return generalsTypes.length;
            }

            @Override
             public Object getGroup( int groupPosition) {
                 //  TODO Auto-generated method stub
                 return generalsTypes[groupPosition];
            }

            @Override
             public  long getGroupId( int groupPosition) {
                 //  TODO Auto-generated method stub
                 return groupPosition;
            }

            @Override
             public  int getChildrenCount( int groupPosition) {
                 //  TODO Auto-generated method stub
                 return generals[groupPosition].length;
            }

            @Override
             public Object getChild( int groupPosition,  int childPosition) {
                 //  TODO Auto-generated method stub
                 return generals[groupPosition][childPosition];
            }

            @Override
             public  long getChildId( int groupPosition,  int childPosition) {
                 //  TODO Auto-generated method stub
                 return childPosition;
            }

            @Override
             public  boolean hasStableIds() {
                 //  TODO Auto-generated method stub
                 return  true;
            }

            @Override
             public View getGroupView( int groupPosition,  boolean isExpanded,
                    View convertView, ViewGroup parent) {
                 //  TODO Auto-generated method stub
                LinearLayout ll =  new LinearLayout(
                        ExpandableList. this);
                ll.setOrientation(0);
                ImageView logo =  new ImageView(ExpandableList. this);
                logo.setImageResource(logos[groupPosition]);
                logo.setPadding(50, 0, 0, 0);
                ll.addView(logo);
                TextView textView = getTextView();
                textView.setTextColor(Color.BLACK);
                textView.setText(getGroup(groupPosition).toString());
                ll.addView(textView);

                 return ll;
            }

            @Override
             public View getChildView( int groupPosition,  int childPosition,
                     boolean isLastChild, View convertView, ViewGroup parent) {
                 //  TODO Auto-generated method stub
                LinearLayout ll =  new LinearLayout(
                        ExpandableList. this);
                ll.setOrientation(0);
                ImageView generallogo =  new ImageView(
                        ExpandableList. this);
                generallogo
                        .setImageResource(generallogos[groupPosition][childPosition]);
                ll.addView(generallogo);
                TextView textView = getTextView();
                textView.setText(getChild(groupPosition, childPosition)
                        .toString());
                ll.addView(textView);
                 return ll;
            }

            @Override
             public  boolean isChildSelectable( int groupPosition,
                     int childPosition) {
                 //  TODO Auto-generated method stub
                 return  true;
            }

        };

        ExpandableListView expandableListView = (ExpandableListView) findViewById(R.id.list);
        expandableListView.setAdapter(adapter);
        
        
         // 设置item点击的监听器
        expandableListView.setOnChildClickListener( new OnChildClickListener() {

            @Override
             public  boolean onChildClick(ExpandableListView parent, View v,
                     int groupPosition,  int childPosition,  long id) {

                Toast.makeText(
                        ExpandableList. this,
                        "你点击了" + adapter.getChild(groupPosition, childPosition),
                        Toast.LENGTH_SHORT).show();

                 return  false;
            }
        });
    }
}
复制代码

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值