`
shuai1234
  • 浏览: 972608 次
  • 性别: Icon_minigender_1
  • 来自: 山西
社区版块
存档分类
最新评论

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

 
阅读更多

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

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

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

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
>
  <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello"
    android:textSize="20sp"
  />
  <SlidingDrawer
    android:id="@+id/sd"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:handle="@+id/iv" 
    android:content="@+id/myContent"
    android:orientation="vertical"
  >

      <ImageView
        android:id="@+id/iv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/open1"
      />

      <GridView
      android:id="@id/myContent"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:numColumns="3"
      android:background="@drawable/background"
      android:gravity="center"
    /> 
      
  </SlidingDrawer>
</RelativeLayout>

 

在SlidingDrawer这个标签下android:handle:指示的就是抽屉的图片。android:content:指向的就是抽屉里面的布局。有了这个布局,其实一个抽屉就出来了。

下面我们看Chouti这个类的代码

public class Chouti extends Activity {
 
  private GridView gv;
  private SlidingDrawer sd;
  private ImageView iv;
  private int[] icons={R.drawable.browser,R.drawable.gallery,
                        R.drawable.camera,R.drawable.gmail,
                        R.drawable.music,R.drawable.market,
                        R.drawable.phone,R.drawable.messages,R.drawable.maps};
  private String[] items={"浏览器","图片","相机","时钟","音乐","市场","拨号","信息","地图"};
     
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        gv = (GridView)findViewById(R.id.myContent);
        sd = (SlidingDrawer)findViewById(R.id.sd);
        iv=(ImageView)findViewById(R.id.iv);
        MyAdapter adapter=new MyAdapter(this,items,icons);//自定义MyAdapter来实现图标加item的显示效果
        gv.setAdapter(adapter);
        sd.setOnDrawerOpenListener(new SlidingDrawer.OnDrawerOpenListener()//开抽屉
        {
          @Override
          public void onDrawerOpened()
          {
            iv.setImageResource(R.drawable.close1);//响应开抽屉事件 ,把图片设为向下的
          }
        });
        sd.setOnDrawerCloseListener(new SlidingDrawer.OnDrawerCloseListener()
        {
          @Override
          public void onDrawerClosed()
          {
            iv.setImageResource(R.drawable.open1);//响应关抽屉事件
          }
        });
    }
}

在整个类里面将布局导入,同时设置开关抽屉的监听事件。这里面我们需要自定义一个MyAdapter来显示带文字下标的图片。

下面是MyAdapter这个类的代码


public class MyAdapter extends BaseAdapter

  private Context _ct;
  private String[] _items;
  private int[] _icons;

  public MyAdapter(Context ct,String[] items,int[] icons) //构造器
  {
    _ct=ct;
    _items=items;
    _icons=icons;
  }

  @Override
  public int getCount()
  {
    return _items.length;
  }

  @Override
  public Object getItem(int arg0)
  {
    return _items[arg0];
  }

  @Override
  public long getItemId(int position)
  {
    return position;
  }

  @Override
  public View getView(int position, View convertView, ViewGroup parent)
  {
    LayoutInflater factory = LayoutInflater.from(_ct);
    View v = (View) factory.inflate(R.layout.gv, null);//绑定自定义的layout
    ImageView iv = (ImageView) v.findViewById(R.id.icon);
    TextView tv = (TextView) v.findViewById(R.id.text);
    iv.setImageResource(_icons[position]);
    tv.setText(_items[position]);
    return v;
  }
}

也是非常的简单,其中用到的布局如下

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
>
  <ImageView
    android:id="@+id/icon"
    android:layout_width="wrap_content"
    android:layout_height="40px"
    android:layout_gravity="center"
  />
  <TextView 
    android:id="@+id/text"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:textColor="#ffffffff"
  />
</LinearLayout>

这样,我们的抽屉就完成啦 来看下效果

 

 

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

http://blog.csdn.net/notice520/article/details/6166866

分享到:
评论

相关推荐

    android UI进阶之android中隐藏的layout 抽屉的使用方法

    在Android UI设计中,抽屉(Sliding Drawer)是一种常见的交互元素,它可以提供一种隐藏和展示内容的方式,常用于实现侧滑菜单或类似功能。本文将深入探讨如何在Android中使用Sliding Drawer控件,以创建一个类似...

    Android高手进阶教程

    ### Android高手进阶教程知识点详解 #### 一、Android常用命令集锦 ##### 1. 环境配置与管理 - **android**: 输入此命令会弹出SDK and AVD Manager界面,允许开发者进行SDK更新及AVD(Android Virtual Device)的...

    android高手进阶教程 完整版 pdf

    ### Android高手进阶教程知识...以上是《Android高手进阶教程》中的核心知识点概览,涵盖了从基础命令到高级组件的应用。通过深入学习这些内容,可以帮助开发者更好地掌握Android开发技巧,提高应用程序的质量和性能。

    android popupwindow UI进阶之弹窗的使用

    Android PopupWindow UI进阶之弹窗的使用 Android 中的 PopupWindow 是一种常用的 UI 组件,它可以弹出一个对话框,提供给用户某些选项或信息。PopupWindow 和 AlertDialog 类似,但它们有各自的特点。下面我们来...

    Android应用源码之超爽的抽屉效果-IT计算机-毕业设计.zip

    在Android应用开发中,抽屉效果(Drawer Effect)是一种常见的设计模式,通常用于实现侧滑菜单,让用户能够从屏幕边缘滑出一个隐藏的导航菜单。这个"Android应用源码之超爽的抽屉效果"是一个适合毕业设计学习的示例...

    Android应用源码之NavigationDrawer完整代码.zip

    NavigationView提供了一种方便的方式来定义抽屉中的UI元素和点击事件。 3. **Fragments**:通常,Navigation Drawer用于切换不同的Fragments,展示在主内容视图中。每个菜单项对应一个Fragment,点击时进行替换或...

    安卓app开发项目-抽屉效果(源码).zip

    抽屉效果的实现主要依赖于Android SDK中的`DrawerLayout`组件,它是Android提供的一个视图容器,可以用来构建这种滑出式菜单。`DrawerLayout`允许开发者定义一个或两个“抽屉”,可以从屏幕边缘滑入和滑出。通常,一...

    Xamarin Android Single View App入门

    **Xamarin Android Single View App入门** Xamarin是一个强大的跨平台移动开发工具,它允许...记得参考提供的资料,如"Getting-started-with-Xamarin-Android-Single-View-A.pdf",这将为你的学习之路提供更多的指导。

Global site tag (gtag.js) - Google Analytics