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

溫馨提示×

溫馨提示×

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

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

怎么在Android中使用ImageSwitcher實現一個相冊功能

發布時間:2022-04-19 10:56:48 來源:億速云 閱讀:134 作者:iii 欄目:開發技術

這篇文章主要講解了“怎么在Android中使用ImageSwitcher實現一個相冊功能”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么在Android中使用ImageSwitcher實現一個相冊功能”吧!

代碼如下:

<?xml version="1.0" encoding="utf-8" ?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:gravity="center_horizontal">
    <!--定義一個GridView組件-->
    <GridView
      android:id="@+id/grid01"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:listSelector="@null"
      android:numColumns="3"
      android:horizontalSpacing="2dp"
      android:verticalSpacing="2dp"
      android:gravity="center">
    </GridView>
    <!--定義一個ImageSwitcher組件-->
    <ImageSwitcher
      android:id="@+id/switcher"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:layout_gravity="center_horizontal"
      android:padding="50dp"
      android:inAnimation="@android:anim/fade_in"
      android:outAnimation="@android:anim/fade_out"
      android:background="@color/colorPrimaryDark"
      android:visibility="gone">
    </ImageSwitcher>
</RelativeLayout>

關于GridView 有兩種常用的監聽事件:

gridView.setOnItemSelectedListener 和 gridView.setOnItemClickListener

關于ImageSwitcher 設置ImageSwitcher 采用了imageSwitcher.setFactory 方法:

public class MainActivity extends Activity {
  int[] imageId = new int[]{
      R.drawable.a0,R.drawable.a1,R.drawable.a2,R.drawable.a4,
      R.drawable.a5,R.drawable.a6,R.drawable.a7,R.drawable.a8,
      R.drawable.a9,R.drawable.a00,R.drawable.a02,R.drawable.a02,
  };
  ImageSwitcher imageSwitcher ;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //創建一個List對象,list對象的元素是Map
    List<Map<String,Object>> listitems = new ArrayList<Map<String, Object>>();
    for (int i = 0 ; i < imageId.length ; i++ ){
      Map<String,Object> listitem = new HashMap<String, Object>();
      listitem.put("image",imageId[i]);
      listitems.add(listitem);
    }
    //獲取顯示圖片的ImageSwitcher
    imageSwitcher = (ImageSwitcher) findViewById(R.id.switcher);
    //為ImageSwitcher設置動畫效果
    imageSwitcher.setFactory(new ViewSwitcher.ViewFactory() {
      @Override
      public View makeView() {
        //創建ImageView對象
        ImageView imageView = new ImageView(MainActivity.this);
        imageView.setScaleType(ImageView.ScaleType.FIT_XY);
        imageView.setLayoutParams(new ImageSwitcher.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.MATCH_PARENT));
        //返回ImageView對象
        return imageView;
      }
    });
    //創建一個SimpleAdapter
    SimpleAdapter simpleAdapter = new SimpleAdapter(this,listitems,R.layout.cell,new String[]{"image"},new int[]{R.id.image1});
    GridView gridView = (GridView) findViewById(R.id.grid01);
    //為gridView設置adapter
    gridView.setAdapter(simpleAdapter);
    //添加列表選中監聽事件
    gridView.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
      @Override
      public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
        imageSwitcher.setVisibility(View.VISIBLE);
        imageSwitcher.setClickable(true);
        //顯示當前選中圖片
        imageSwitcher.setImageResource(imageId[position]);
      }
      @Override
      public void onNothingSelected(AdapterView<?> parent) {
      }
    });
    //添加列表被單擊的監聽器
    gridView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
      @Override
      public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        imageSwitcher.setVisibility(View.VISIBLE);
        imageSwitcher.setClickable(true);
        //顯示被單擊圖片
        imageSwitcher.setImageResource(imageId[position]);
      }
    });
    //為imageSwitcher添加監聽事件
    imageSwitcher.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        imageSwitcher.setVisibility(View.GONE);
        imageSwitcher.setClickable(false);
      }
    });
    imageSwitcher.setClickable(false);
  }
}

幾點值得注意的:

  • 由于SimpleAdapter 對象 是根據Map 建立的 ,所以他們的Key一定要相同才行,否則無法生成。

  • 關于閃退現象:我才用的是經過壓縮過的圖片,如果是加載高清大圖很可能出現OOM現象,這是我們需要對圖片進行壓縮

  • 這里cell文件還是和往常一樣,只是個簡單的ImageView罷了,注意設置它的 id 要與活動中調用它的地方相同,這里就不過多描述了。

感謝各位的閱讀,以上就是“怎么在Android中使用ImageSwitcher實現一個相冊功能”的內容了,經過本文的學習后,相信大家對怎么在Android中使用ImageSwitcher實現一個相冊功能這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

南皮县| 中山市| 兴义市| 丹东市| 开平市| 聂拉木县| 乌什县| 霍林郭勒市| 绥阳县| 内乡县| 新干县| 海安县| 个旧市| 绥芬河市| 自贡市| 娄烦县| 铜山县| 桐城市| 来宾市| 小金县| 酒泉市| 玉树县| 时尚| 定西市| 名山县| 巧家县| 城口县| 新化县| 丰县| 乐亭县| 旬邑县| 长寿区| 永春县| 哈尔滨市| 隆德县| 错那县| 孝昌县| 玉田县| 弥勒县| 房产| 金寨县|