基本视图——ImageSwitcher

作者:追风剑情 发布于:2015-9-21 22:44 分类:Android

attrs.xml文件

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <declare-styleable name="Gallery1">
  4. <attr name="android:galleryItemBackground" />
  5. </declare-styleable>
  6. </resources>

视图

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. tools:context="${relativePackage}.${activityClass}" >
  7.  
  8. <TextView
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:text="Images of San Francisco" />
  12. <Gallery
  13. android:id="@+id/gallery1"
  14. android:layout_width="fill_parent"
  15. android:layout_height="wrap_content"/>
  16.  
  17. <ImageSwitcher
  18. android:id="@+id/switcher1"
  19. android:layout_width="fill_parent"
  20. android:layout_height="fill_parent"
  21. android:layout_alignParentLeft="true"
  22. android:layout_alignParentRight="true"
  23. android:layout_alignParentBottom="true"/>
  24. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import android.app.Activity;
  4. import android.content.Context;
  5. import android.content.res.TypedArray;
  6. import android.os.Bundle;
  7. import android.view.View;
  8. import android.view.ViewGroup;
  9. import android.view.ViewGroup.LayoutParams;
  10. import android.view.animation.AnimationUtils;
  11. import android.widget.AdapterView;
  12. import android.widget.BaseAdapter;
  13. import android.widget.Gallery;
  14. import android.widget.ImageSwitcher;
  15. import android.widget.ImageView;
  16. import android.widget.AdapterView.OnItemClickListener;
  17. import android.widget.ViewSwitcher.ViewFactory;
  18.  
  19. public class ImageSwitcherActivity extends Activity implements ViewFactory {
  20.  
  21. Integer[] imageIDs = {
  22. R.drawable.pic1,
  23. R.drawable.pic2,
  24. R.drawable.pic3,
  25. R.drawable.pic4,
  26. R.drawable.pic5,
  27. R.drawable.pic6,
  28. R.drawable.pic7
  29. };
  30. private ImageSwitcher imageSwitcher;
  31. @Override
  32. protected void onCreate(Bundle savedInstanceState) {
  33. super.onCreate(savedInstanceState);
  34. setContentView(R.layout.activity_image_switcher);
  35. imageSwitcher = (ImageSwitcher) findViewById(R.id.switcher1);
  36. imageSwitcher.setFactory(this);
  37. //设置淡入淡出效果
  38. imageSwitcher.setInAnimation(AnimationUtils.loadAnimation(this,
  39. android.R.anim.fade_in));
  40. imageSwitcher.setOutAnimation(AnimationUtils.loadAnimation(this,
  41. android.R.anim.fade_out));
  42. //设置从左边滑入,右边滑出效果
  43. /*imageSwitcher.setInAnimation(AnimationUtils.loadAnimation(this,
  44. android.R.anim.slide_in_left));
  45. imageSwitcher.setOutAnimation(AnimationUtils.loadAnimation(this,
  46. android.R.anim.slide_out_right));*/
  47. Gallery gallery = (Gallery) findViewById(R.id.gallery1);
  48. gallery.setAdapter(new ImageAdapter(this));
  49. gallery.setOnItemClickListener(new OnItemClickListener(){
  50.  
  51. @Override
  52. public void onItemClick(AdapterView<?> parent, View view,
  53. int position, long id) {
  54. imageSwitcher.setImageResource(imageIDs[position]);
  55. }
  56. });
  57. }
  58.  
  59. @Override
  60. public View makeView() {
  61. ImageView imageView = new ImageView(this);
  62. imageView.setBackgroundColor(0xFF000000);
  63. imageView.setScaleType(ImageView.ScaleType.FIT_CENTER);
  64. imageView.setLayoutParams(new ImageSwitcher.LayoutParams(
  65. LayoutParams.FILL_PARENT,
  66. LayoutParams.FILL_PARENT));
  67. return imageView;
  68. }
  69. public class ImageAdapter extends BaseAdapter
  70. {
  71. Context context;
  72. int itemBackground;
  73. public ImageAdapter(Context c)
  74. {
  75. context = c;
  76. //设置样式
  77. TypedArray a = obtainStyledAttributes(R.styleable.Gallery1);
  78. itemBackground = a.getResourceId(
  79. R.styleable.Gallery1_android_galleryItemBackground, 0);
  80. a.recycle();//回收a对象
  81. }
  82.  
  83. @Override
  84. public int getCount() {
  85. return imageIDs.length;
  86. }
  87.  
  88. @Override
  89. public Object getItem(int position) {
  90. return position;
  91. }
  92.  
  93. @Override
  94. public long getItemId(int position) {
  95. return position;
  96. }
  97.  
  98. @Override
  99. public View getView(int position, View convertView, ViewGroup parent) {
  100. ImageView imageView;
  101. if(convertView == null) {
  102. imageView = new ImageView(context);
  103. imageView.setImageResource(imageIDs[position]);
  104. imageView.setScaleType(ImageView.ScaleType.FIT_XY);
  105. imageView.setLayoutParams(new Gallery.LayoutParams(150, 120));
  106. }else{
  107. imageView = (ImageView) convertView;
  108. }
  109. imageView.setBackgroundResource(itemBackground);
  110. return imageView;
  111. }
  112. }
  113. }

运行效果

sssssssssss.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号