亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Android 組件Gallery和GridView示例講解

 更新時間:2016年08月10日 09:04:30   作者:chino  
本文主要講解Android 組件Gallery和GridView,這里詳細介紹組件Gallery和GridView的知識要點,并附示例代碼和實現(xiàn)效果圖,有興趣的小伙伴可以參考下

Android Gallery和GridView組件:

Gallery 畫廊

Gallery是一個內(nèi)部元素可以水平滾動,并且可以把當前選擇的子元素定位在它中心的布局組件。

我們還是直接看看例子的運行效果。

下面上代碼,相關(guān)解釋都放在代碼里了。

1、建立一個新項目 HelloGallery

2、拷貝wallpaper_0.jpg…wallpaper_9.jpg 10個圖片文件到res/drawable目錄

3、res/layout/main.xml文件的內(nèi)容如下:

<?xml version="1.0" encoding="utf-8"?>
<framelayout android:layout_height="fill_parent" android:layout_width="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/FrameLayout01">
<imageview android:layout_height="fill_parent" android:layout_width="fill_parent" android:id="@+id/ImageView01" android:src="@drawable/wallpaper_0">
</imageview>

<gallery android:layout_height="wrap_content" android:layout_width="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/Gallery01" android:spacing="5dp">
</gallery>
</framelayout>

其中我們使用FrameLayout來實現(xiàn)疊加效果,使用ImageView來顯示大圖,Gallery來展示畫廊,android:spacing="5dp" 屬性則是用來設(shè)置元素之間的間隔。

4、在res/values/目錄中新建一個attrs.xml內(nèi)容如下:

<?xml version="1.0" encoding="UTF-8"?>
<resources>
  <declare -styleable="" name="HelloGallery">
    <attr name="android:galleryItemBackground">
  </attr></declare>
</resources>

5、在MainHelloGallery.java中的內(nèi)容如下:

package android.basic.lesson13;

import android.app.Activity;
import android.content.Context;
import android.content.res.TypedArray;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;

import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.BaseAdapter;
import android.widget.Gallery;
import android.widget.ImageView;
import android.widget.Toast;

public class MainHelloGallery extends Activity {

  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    //定義UI組件
    final ImageView iv= (ImageView)findViewById(R.id.ImageView01);
    Gallery g = (Gallery) findViewById(R.id.Gallery01);

    //設(shè)置圖片匹配器
    g.setAdapter(new ImageAdapter(this));

    //設(shè)置AdapterView點擊監(jiān)聽器,Gallery是AdapterView的子類
    g.setOnItemClickListener(new OnItemClickListener() {

      @Override
      public void onItemClick(AdapterView<?> parent, View view,
          int position, long id) {
        //顯示點擊的是第幾張圖片
        Toast.makeText(MainHelloGallery.this, "" + position,
            Toast.LENGTH_LONG).show();
        //設(shè)置背景部分的ImageView顯示當前Item的圖片
        iv.setImageResource(((ImageView)view).getId());
      }
    });
  }

  //定義繼承BaseAdapter的匹配器
  public class ImageAdapter extends BaseAdapter {

    //Item的修飾背景
    int mGalleryItemBackground;

    //上下文對象
    private Context mContext;

    //圖片數(shù)組
    private Integer[] mImageIds = { R.drawable.wallpaper_0,
        R.drawable.wallpaper_1, R.drawable.wallpaper_2,
        R.drawable.wallpaper_3, R.drawable.wallpaper_4,
        R.drawable.wallpaper_5, R.drawable.wallpaper_6,
        R.drawable.wallpaper_7, R.drawable.wallpaper_8,
        R.drawable.wallpaper_9 };

    //構(gòu)造方法
    public ImageAdapter(Context c){
      mContext = c;
      //讀取styleable資源
    TypedArray a = obtainStyledAttributes(R.styleable.HelloGallery);
    mGalleryItemBackground = a.getResourceId(
      R.styleable.HelloGallery_android_galleryItemBackground, 0);
    a.recycle();

    }

    //返回項目數(shù)量
    @Override
    public int getCount() {
      return mImageIds.length;
    }

    //返回項目
    @Override
    public Object getItem(int position) {
      return position;
    }

    //返回項目Id
    @Override
    public long getItemId(int position) {
      return position;
    }

    //返回視圖
    @Override
    public View getView(int position, View convertView, ViewGroup parent) {

      ImageView iv = new ImageView(mContext);
      iv.setImageResource(mImageIds[position]);
      //給生成的ImageView設(shè)置Id,不設(shè)置的話Id都是-1
      iv.setId(mImageIds[position]);
      iv.setLayoutParams(new Gallery.LayoutParams(120, 160));
      iv.setScaleType(ImageView.ScaleType.FIT_XY);
      iv.setBackgroundResource(mGalleryItemBackground);
      return iv;
    }

  }
}

我們點擊某一張圖片,會把該子元素的圖片顯示在放在后面一層的ImageView組件中。有興趣的同學(xué)可以了解一下AdapterView的繼承關(guān)系:

以上就是對Android Gallery 和 GridView 組件的介紹,后續(xù)繼續(xù)對相關(guān)知識補充,謝謝大家對本站的支持!

相關(guān)文章

  • Android?SearchView搜索控件使用方法詳解

    Android?SearchView搜索控件使用方法詳解

    這篇文章主要為大家詳細介紹了Android?SearchView搜索控件的使用方法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-04-04
  • Android學(xué)習項目之簡易版微信為例(二)

    Android學(xué)習項目之簡易版微信為例(二)

    這篇文章主要以簡易版微信為例,實現(xiàn)簡易版微信的登陸、注冊界面的編寫與簡單交互,感興趣的小伙伴們可以參考一下
    2016-06-06
  • OKhttp攔截器實現(xiàn)實踐環(huán)節(jié)源碼解析

    OKhttp攔截器實現(xiàn)實踐環(huán)節(jié)源碼解析

    這篇文章主要為大家介紹了OKhttp攔截器實現(xiàn)實踐環(huán)節(jié)源碼解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-01-01
  • Flutter渲染原理深入解析

    Flutter渲染原理深入解析

    眾所周知?Flutter是由Google推出的開源的高性能跨平臺框架,一個2D渲染引擎。在Flutter中,Widget是Flutter用戶界面的基本構(gòu)成單元,可以說一切皆Widget。下面來看下Flutter框架的整體結(jié)構(gòu)組成
    2023-04-04
  • Android?Flutter控件封裝之視頻進度條的實現(xiàn)

    Android?Flutter控件封裝之視頻進度條的實現(xiàn)

    這篇文章主要來和大家分享一個很簡單的控制器封裝案例,包含了基本的播放暫停,全屏和退出全屏,文中的示例代碼講解詳細,感興趣的可以了解一下
    2023-06-06
  • RecylerView實現(xiàn)流布局StaggeredGridLayoutManager使用詳解

    RecylerView實現(xiàn)流布局StaggeredGridLayoutManager使用詳解

    這篇文章主要為大家詳細介紹了RecylerView實現(xiàn)流布局StaggeredGridLayoutManager使用,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-09-09
  • 基于Viewpager2實現(xiàn)登錄注冊引導(dǎo)頁面

    基于Viewpager2實現(xiàn)登錄注冊引導(dǎo)頁面

    這篇文章主要為大家詳細介紹了基于Viewpager2實現(xiàn)登錄注冊引導(dǎo)頁面,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-09-09
  • Android使用Intent隱式實現(xiàn)頁面跳轉(zhuǎn)

    Android使用Intent隱式實現(xiàn)頁面跳轉(zhuǎn)

    這篇文章主要為大家詳細介紹了Android使用Intent隱式來實現(xiàn)向上跳轉(zhuǎn),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-08-08
  • Android  ADB詳細介紹及用法

    Android ADB詳細介紹及用法

    本文主要介紹Android ADB,這里整理了Android ADB的文檔資料,詳細介紹了adb 命令,有需要的小伙伴可以參考下
    2016-08-08
  • Android onCreate( )方法詳細介紹

    Android onCreate( )方法詳細介紹

    本文主要介紹Android onCreate( )方法,做Android應(yīng)用的朋友對onCreate()的方法并不陌生,在開發(fā)應(yīng)用的時候大家應(yīng)該注意什么呢,這里給大家詳細說明
    2016-09-09

最新評論