91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Android實現漂亮的Gallery畫廊

發布時間:2020-09-13 22:30:16 來源:腳本之家 閱讀:145 作者:Vivinia_Vivinia 欄目:移動開發

本文實例為大家分享了Android實現Gallery畫廊的具體代碼,供大家參考,具體內容如下

僅是實現基本功能,頁面粗糙請見諒

圖片下標0開始

Android實現漂亮的Gallery畫廊

activity_main.xml頁面:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context="com.example.gallery.MainActivity">
 
  <Gallery
    android:id="@+id/galPicture"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerVertical="true"
    android:layout_centerHorizontal="true" />
</RelativeLayout>

GalleryAdapter.java頁面:

package com.example.gallery;
 
import android.content.Context;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Gallery;
import android.widget.ImageView;
 
public class GalleryAdapter extends BaseAdapter {
  private Context mContext;
 
  int[] images = {R.mipmap.apple, R.mipmap.banana, R.mipmap.bicycle, R.mipmap.chair,R.mipmap.chopsticks, R.mipmap.dog, R.mipmap.fish, R.mipmap.pear}; //本地圖片
 
  public GalleryAdapter (Context context) {
    this.mContext = context;
  }
 
  @Override
  public int getCount() {
    return images.length;
  }
 
  @Override
  public Object getItem(int i) {
    return i;
  }
 
  @Override
  public long getItemId(int i) {
    return i;
  }
 
  @Override
  public View getView(int i, View view, ViewGroup viewGroup) {
    ImageView image = new ImageView(mContext);
    image.setImageResource(images[i]);  //設置圖片
    image.setAdjustViewBounds(true);  //是否調整邊框
    image.setLayoutParams(new Gallery.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
    return image;
  }
}

MainActivity.java頁面:

package com.example.gallery;
 
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.Gallery;
import android.widget.Toast;
 
public class MainActivity extends AppCompatActivity {
  GalleryAdapter galleryAdapter;
 
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Gallery galPicture = findViewById(R.id.galPicture);
    galleryAdapter = new GalleryAdapter(MainActivity.this);
    galPicture.setAdapter(galleryAdapter);
    //相應的點擊事件
    galPicture.setOnItemClickListener(new AdapterView.OnItemClickListener() {
      @Override
      public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
        Toast.makeText(MainActivity.this, "圖片" + i, Toast.LENGTH_LONG).show();
      }
    });
  }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

乌兰浩特市| 徐闻县| 西丰县| 资源县| 长春市| 大余县| 崇义县| 上虞市| 乌兰察布市| 平遥县| 南宫市| 开鲁县| 海晏县| 涟源市| 北宁市| 民丰县| 桐城市| 吴桥县| 夏邑县| 囊谦县| 虎林市| 阿图什市| 项城市| 丰原市| 长海县| 横峰县| 旺苍县| 安康市| 兴山县| 宜黄县| 新密市| 罗源县| 康保县| 镇坪县| 增城市| 将乐县| 凌云县| 武陟县| 灵宝市| 舒城县| 玉环县|