android UI进阶之android中隐藏的layout 抽屉的运用

最近在写一个应用,想把设置页面和应用页面放在一起,这样就能实现用户可以实时看到自己的设置对UI的影响,从而更方便的设置用户喜欢的界面。想了一段时间,发现用slidingDrawer这个控件可以实现这个效果。也就是一个抽屉。拉开抽屉,占据半个屏幕,另外半个屏幕还是显示应用页面。效果还是不错的。

今天就和大家分享一下android中这个抽屉效果。其实在android的lanucher就是一个抽屉,打开它就可以看到安装的应用。相信大家都见过用过。下面我们就来做个相同的效果,当然只是UI上差不多相同的效果。

slidingDrawer这个控件使用非常简单,基本在xml里面配置就可以。代码如下所示。

  
  
  
  
  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <RelativeLayout   
  3.   xmlns:android="http://schemas.android.com/apk/res/android" 
  4.   android:layout_width="fill_parent" 
  5.   android:layout_height="fill_parent" 
  6. > 
  7.   <TextView 
  8.     android:layout_width="fill_parent" 
  9.     android:layout_height="wrap_content" 
  10.     android:text="@string/hello" 
  11.     android:textSize="20sp" 
  12.   /> 
  13.   <SlidingDrawer 
  14.     android:id="@+id/sd" 
  15.     android:layout_width="match_parent" 
  16.     android:layout_height="match_parent" 
  17.     android:handle="@+id/iv"   
  18.     android:content="@+id/myContent" 
  19.     android:orientation="vertical" 
  20.   > 
  21.  
  22.       <ImageView 
  23.         android:id="@+id/iv" 
  24.         android:layout_width="wrap_content" 
  25.         android:layout_height="wrap_content" 
  26.         android:src="@drawable/open1" 
  27.       /> 
  28.  
  29.       <GridView 
  30.       android:id="@id/myContent" 
  31.       android:layout_width="wrap_content" 
  32.       android:layout_height="wrap_content" 
  33.       android:numColumns="3" 
  34.       android:background="@drawable/background" 
  35.       android:gravity="center" 
  36.     />   
  37.         
  38.   </SlidingDrawer> 
  39. </RelativeLayout> 
  40.  
  41.    
  42.  
  43. 在SlidingDrawer这个标签下android:handle:指示的就是抽屉的图片。android:content:指向的就是抽屉里面的布局。有了这个布局,其实一个抽屉就出来了。  
  44.  
  45. 下面我们看Chouti这个类的代码  
  46.  
  47. public class Chouti extends Activity {  
  48.    
  49.   private GridView gv;  
  50.   private SlidingDrawer sd;  
  51.   private ImageView iv;  
  52.   private int[] icons={R.drawable.browser,R.drawable.gallery,  
  53.                         R.drawable.camera,R.drawable.gmail,  
  54.                         R.drawable.music,R.drawable.market,  
  55.                         R.drawable.phone,R.drawable.messages,R.drawable.maps};  
  56.   private String[] items={"浏览器","图片","相机","时钟","音乐","市场","拨号","信息","地图"};  
  57.        
  58.     /** Called when the activity is first created. */  
  59.     @Override  
  60.     public void onCreate(Bundle savedInstanceState) {  
  61.         super.onCreate(savedInstanceState);  
  62.         setContentView(R.layout.main);  
  63.         gv = (GridView)findViewById(R.id.myContent);  
  64.         sd = (SlidingDrawer)findViewById(R.id.sd);  
  65.         iv=(ImageView)findViewById(R.id.iv);  
  66.         MyAdapter adapter=new MyAdapter(this,items,icons);//自定义MyAdapter来实现图标加item的显示效果  
  67.         gv.setAdapter(adapter);  
  68.         sd.setOnDrawerOpenListener(new SlidingDrawer.OnDrawerOpenListener()//开抽屉  
  69.         {  
  70.           @Override  
  71.           public void onDrawerOpened()  
  72.           {  
  73.             iv.setImageResource(R.drawable.close1);//响应开抽屉事件 ,把图片设为向下的  
  74.           }  
  75.         });  
  76.         sd.setOnDrawerCloseListener(new SlidingDrawer.OnDrawerCloseListener()  
  77.         {  
  78.           @Override  
  79.           public void onDrawerClosed()  
  80.           {  
  81.             iv.setImageResource(R.drawable.open1);//响应关抽屉事件  
  82.           }  
  83.         });  
  84.     }  
  85. }  
  86.  
  87. 在整个类里面将布局导入,同时设置开关抽屉的监听事件。这里面我们需要自定义一个MyAdapter来显示带文字下标的图片。  
  88.  
  89. 下面是MyAdapter这个类的代码  
  90.  
  91.  
  92. public class MyAdapter extends BaseAdapter  
  93. {   
  94.   private Context _ct;  
  95.   private String[] _items;  
  96.   private int[] _icons;  
  97.  
  98.   public MyAdapter(Context ct,String[] items,int[] icons) //构造器  
  99.   {  
  100.     _ct=ct;  
  101.     _items=items;  
  102.     _icons=icons;  
  103.   }  
  104.  
  105.   @Override  
  106.   public int getCount()  
  107.   {  
  108.     return _items.length;  
  109.   }  
  110.  
  111.   @Override  
  112.   public Object getItem(int arg0)  
  113.   {  
  114.     return _items[arg0];  
  115.   }  
  116.  
  117.   @Override  
  118.   public long getItemId(int position)  
  119.   {  
  120.     return position;  
  121.   }  
  122.  
  123.   @Override  
  124.   public View getView(int position, View convertView, ViewGroup parent)  
  125.   {  
  126.     LayoutInflater factory = LayoutInflater.from(_ct);  
  127.     View v = (View) factory.inflate(R.layout.gv, null);//绑定自定义的layout  
  128.     ImageView iv = (ImageView) v.findViewById(R.id.icon);  
  129.     TextView tv = (TextView) v.findViewById(R.id.text);  
  130.     iv.setImageResource(_icons[position]);  
  131.     tv.setText(_items[position]);  
  132.     return v;  
  133.   }  
  134. }  
  135.  
  136. 也是非常的简单,其中用到的布局如下  
  137.  
  138. <?xml version="1.0" encoding="utf-8"?> 
  139. <LinearLayout 
  140.   xmlns:android="http://schemas.android.com/apk/res/android" 
  141.   android:orientation="vertical" 
  142.   android:layout_width="fill_parent" 
  143.   android:layout_height="fill_parent" 
  144. > 
  145.   <ImageView 
  146.     android:id="@+id/icon" 
  147.     android:layout_width="wrap_content" 
  148.     android:layout_height="40px" 
  149.     android:layout_gravity="center" 
  150.   /> 
  151.   <TextView   
  152.     android:id="@+id/text" 
  153.     android:layout_width="fill_parent" 
  154.     android:layout_height="wrap_content" 
  155.     android:gravity="center" 
  156.     android:textColor="#ffffffff" 
  157.   /> 
  158. </LinearLayout> 

这样,我们的抽屉就完成啦 来看下效果 之前不能看到图 现在应该能了吧

 

就写这么多啦。抽屉这个控件非常实用,除了我在开头所说的我在程序中的应用外,还有很多的用途, 发挥你的想象力,抽屉将为你的应用增色不少。

你可能感兴趣的:(UI,android,移动开发,slidingdrawer,抽屉)