android UI進階之android中隱藏的layout 抽屜的運用

最近在寫一個應用,想把設置頁面和應用頁面放在一塊兒,這樣就能實現用戶能夠實時看到本身的設置對UI的影響,從而更方便的設置用戶喜歡的界面。想了一段時間,發現用slidingDrawer這個控件能夠實現這個效果。也就是一個抽屜。拉開抽屜,佔據半個屏幕,另外半個屏幕仍是顯示應用頁面。效果仍是不錯的。android

今天就和你們分享一下android中這個抽屜效果。其實在android的lanucher就是一個抽屜,打開它就能夠看到安裝的應用。相信你們都見過用過。下面咱們就來作個相同的效果,固然只是UI上差很少相同的效果。瀏覽器

slidingDrawer這個控件使用很是簡單,基本在xml裏面配置就能夠。代碼以下所示。ide

  
  
           
  
  
  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> 

這樣,咱們的抽屜就完成啦 來看下效果 以前不能看到圖 如今應該能了吧佈局

 

就寫這麼多啦。抽屜這個控件很是實用,除了我在開頭所說的我在程序中的應用外,還有不少的用途, 發揮你的想象力,抽屜將爲你的應用增色很多。this

相關文章
相關標籤/搜索