溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android應(yīng)用中怎么實現(xiàn)一個抽屜效果

發(fā)布時間:2020-12-08 16:08:59 來源:億速云 閱讀:186 作者:Leah 欄目:移動開發(fā)

這篇文章將為大家詳細講解有關(guān)Android應(yīng)用中怎么實現(xiàn)一個抽屜效果,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

首先在layout 下設(shè)置xml布局文件

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" >
  <SlidingDrawer
    android:id="@+id/sliding"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:content="@+id/allApps"
    android:handle="@+id/imageViewIcon"
    android:orientation="vertical" >
    <GridView
      android:id="@+id/allApps"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:background="@drawable/bk"
      android:columnWidth="60dp"
      android:gravity="center"
      android:horizontalSpacing="10dp"
      android:numColumns="auto_fit"
      android:padding="10dp"
      android:stretchMode="columnWidth"
      android:verticalSpacing="10dp" />
    <ImageView
      android:id="@+id/imageViewIcon"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:src="@drawable/touch_handler" />
  </SlidingDrawer>
</RelativeLayout>

SlidingDrawer就是重要的抽屜控件 ,handle是抽屜的拖動按鈕,content是抽屜中的內(nèi)容。

然后建立 chouti的activity類:

import android.app.Activity;
import android.content.Intent;
import android.content.pm.ResolveInfo;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.GridView;
import android.widget.ImageView;
import android.widget.SlidingDrawer;
public class Chouti extends Activity {
  private GridView gv;
  private SlidingDrawer sd;
  private ImageView iv;
  private List<ResolveInfo> apps;
  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.slidingdrawer);
    loadApps();
    gv = (GridView) findViewById(R.id.allApps);
    sd = (SlidingDrawer) findViewById(R.id.sliding);
    iv = (ImageView) findViewById(R.id.imageViewIcon);
    gv.setAdapter(new GridAdapter());
    sd.setOnDrawerOpenListener(new SlidingDrawer.OnDrawerOpenListener()// 開抽屜
    {
      @Override
      public void onDrawerOpened() {
        iv.setImageResource(R.drawable.touch_handler);// 響應(yīng)開抽屜事件
                                // ,把圖片設(shè)為向下的
      }
    });
    sd.setOnDrawerCloseListener(new SlidingDrawer.OnDrawerCloseListener() {
      @Override
      public void onDrawerClosed() {
        iv.setImageResource(R.drawable.touch_handler);// 響應(yīng)關(guān)抽屜事件
      }
    });
  }
  private void loadApps() {
    Intent intent = new Intent(Intent.ACTION_MAIN, null);
    intent.addCategory(Intent.CATEGORY_LAUNCHER);
    apps = getPackageManager().queryIntentActivities(intent, 0);
  }
  public class GridAdapter extends BaseAdapter {
    public GridAdapter() {
    }
    public int getCount() {
      // TODO Auto-generated method stub
      return apps.size();
    }
    public Object getItem(int position) {
      // TODO Auto-generated method stub
      return apps.get(position);
    }
    public long getItemId(int position) {
      // TODO Auto-generated method stub
      return position;
    }
    public View getView(int position, View convertView, ViewGroup parent) {
      // TODO Auto-generated method stub
      ImageView imageView = null;
      if (convertView == null) {
        imageView = new ImageView(Chouti.this);
        imageView.setScaleType(ImageView.ScaleType.FIT_CENTER);
        imageView.setLayoutParams(new GridView.LayoutParams(50, 50));
      } else {
        imageView = (ImageView) convertView;
      }
      ResolveInfo ri = apps.get(position);
      imageView.setImageDrawable(ri.activityInfo
          .loadIcon(getPackageManager()));
      return imageView;
    }
  }
}

關(guān)于Android應(yīng)用中怎么實現(xiàn)一個抽屜效果就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI