亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Android應用中怎么實現一個抽屜效果

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

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

首先在layout 下設置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是抽屜中的內容。

然后建立 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);// 響應開抽屜事件
                                // ,把圖片設為向下的
      }
    });
    sd.setOnDrawerCloseListener(new SlidingDrawer.OnDrawerCloseListener() {
      @Override
      public void onDrawerClosed() {
        iv.setImageResource(R.drawable.touch_handler);// 響應關抽屜事件
      }
    });
  }
  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;
    }
  }
}

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳曲县| 德庆县| 南雄市| 黄骅市| 蒙阴县| 开封市| 偏关县| 吴桥县| 合江县| 郧西县| 巴里| 陕西省| 孝昌县| 巴林左旗| 南昌市| 万荣县| 樟树市| 泰安市| 南召县| 阳谷县| 高邮市| 连江县| 伊川县| 定南县| 海阳市| 东港市| 阿拉善盟| 苗栗市| 陆良县| 长垣县| 建平县| 峨边| 彭州市| 安义县| 苗栗县| 横峰县| 库车县| 上林县| 衡水市| 泰和县| 洱源县|