首页 > 其他分享 >Gallery 画廊效果

Gallery 画廊效果

时间:2023-03-20 19:00:57浏览次数:26  
标签:layout 效果 imageswitcher1 public import images 画廊 android Gallery


 
1.首先创建实现OnItemSelectedListener,ViewFactory类。
2.创建ImageAdapter类。
3.Activity类。
MyOnItemSelectedListener:当Gallery被选择的时候,把被选择的图片放到ImageSwitch里面去。
MyImageAdapter:实现Gallery显示的图片。
ViewFactory:ImageSwitch的显示工厂。

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Gallery
android:id="@+id/gallery1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"/>

<ImageSwitcher android:id="@+id/imageswitcher1"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true">
</ImageSwitcher>
</LinearLayout>



MyOnItemSelectedListener.java


-----------------------


package com.gallery;

import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemSelectedListener;
import android.widget.ImageSwitcher;

public class MyOnItemSelectedListener implements OnItemSelectedListener{
private ImageSwitcher imageswitcher1;
private int[] images;

public MyOnItemSelectedListener(ImageSwitcher imageswitcher1,int[] images){
this.imageswitcher1 = imageswitcher1;
this.images = images;

}
@Override
public void onItemSelected(AdapterView<?> arg0, View arg1, int position,
long arg3) {
// 第2点改进,通过取余来循环取得images数组中的图像资源ID
imageswitcher1.setImageResource(images[position % images.length]);

}

@Override
public void onNothingSelected(AdapterView<?> arg0) {
// TODO Auto-generated method stub

}
}



MyImageAdapter.java


----------------------


package com.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 MyImageAdapter extends BaseAdapter {

public Context context;
private int[] images;
public MyImageAdapter(Context context,int[]images){
this.context = context;
this.images = images;
}
@Override
public int getCount() {
//获得图片的总数,这里设定为最大值,是为了模拟循环显示
return Integer.MAX_VALUE;
}

@Override
public Object getItem(int arg0) {
return null;
}

@Override
public long getItemId(int position) {
return 0;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
ImageView imageView = new ImageView(context);
// 第2点改进,通过取余来循环取得images数组中的图像资源ID
imageView.setImageResource(images[position % images.length]);
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setLayoutParams(new Gallery.LayoutParams(100, 100));
//imageView.setBackgroundResource(mGalleryItemBackground);
return imageView;
}

}




ViewFactory类


-----------------------


package com.gallery;

import android.app.ActionBar.LayoutParams;
import android.content.Context;
import android.view.View;
import android.widget.ImageSwitcher;
import android.widget.ImageView;
import android.widget.ViewSwitcher.ViewFactory;

public class MyViewFactory implements ViewFactory {

private Context context;

public MyViewFactory(Context context){
this.context = context;
}
@Override
public View makeView() {
ImageView i = new ImageView(context);
i.setBackgroundColor(0xFF000000);
i.setScaleType(ImageView.ScaleType.FIT_CENTER);
i.setLayoutParams(new ImageSwitcher.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
return i;
}

}



Activity类


---------------------------


package com.gallery;

import android.app.Activity;
import android.os.Bundle;
import android.view.animation.AnimationUtils;
import android.widget.Gallery;
import android.widget.ImageSwitcher;

public class MyGalleryActivity extends Activity{
private Gallery gallery1;
private ImageSwitcher imageswitcher1;
private int[] images = new int[] { R.drawable.android0001, R.drawable.android0002, R.drawable.android0003, R.drawable.android0004, R.drawable.android0005, R.drawable.android0006, R.drawable.android0007, R.drawable.android0008 };

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

imageswitcher1 = (ImageSwitcher)findViewById(R.id.imageswitcher1);
imageswitcher1.setFactory(new MyViewFactory(MyGalleryActivity.this));
imageswitcher1.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in));
imageswitcher1.setOutAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_out));

gallery1 = (Gallery)findViewById(R.id.gallery1);
gallery1.setAdapter(new MyImageAdapter(this,images));
gallery1.setOnItemSelectedListener(new MyOnItemSelectedListener(imageswitcher1,images));
}

}

标签:layout,效果,imageswitcher1,public,import,images,画廊,android,Gallery
From: https://blog.51cto.com/u_3871599/6138502

相关文章

  • android Gallery
    AdvancedPagerSlidingTabStrip一个完美兼容ViewPager的导航栏组件;可以自定义TabView;能动态加载Tab上的Icon图片;能显示Tab的消息数量和提示小圆点;支持自定义为微博形式的......
  • 自定义ViewGroup 实现拖动跟快速滚动的效果
     之前做到个项目要类似listView或者GridView中的控件移动的效果(主屏上所有程序列表上的效果):1:子控件跟着手指移动2:快速拨动一下,根据拨动的速度......
  • android开发之gallery 实现滚动一张且短距离滑动实现滚动
    首先gallery的特点就不用多说了吧,惯性滚动、半屏翻页,但是很多时候我们不需要它的这些特性。我今天就介绍一下去掉惯性滚动以及短距离翻页的实现:......
  • tabs圆角效果
    今天要处理一个圆角效果用到了下面tab=tabs.newTabSpec("tab_Busquedas");tab.setContent(newIntent().setClassName("com.grapp","com.grapp.......
  • Three.js自定义shader实现离相机越近越透明效果
    constcustomShader=newTHREE.ShaderMaterial({uniforms:{},defines:{nearDis:0.3},transparent:true,side:THREE.DoubleSide,vertexShader:......
  • Three.js 进阶之旅:物理效果-3D乒乓球小游戏
    声明:本文涉及图文和模型素材仅用于个人学习、研究和欣赏,请勿二次修改、非法传播、转载、出版、商用、及进行其他获利行为。摘要本文在专栏上一篇内容《Three.js进阶之......
  • 【Android开发】高级组件-画廊视图
    画廊视图(Gallery)表示,能够按水平方向显示内容,并且可用手指直接拖动图片移动,一般用来浏览图片,被选中的选项位于中间,并且可以响应事件显示信息。在使用......
  • 【Android开发】经典范例1-实现仿Windows7图片预览窗格效果
    本实例将显示类似于windows7提供的图片预览窗格效果,单击任意一张图片,可以在右侧显示该图片的预览效果。效果如图所示:具体实现方法:res/layout/main.x......
  • 优化利器In-Memory开启和效果
    本文主要介绍OracleIn-Memory选件,Oracle在12.1.0.2就已经推出了In-Memory这个选件,现在通常会建议所有使用19.8及之后版本的用户,有条件都要留给In-memory一点内存区域。......
  • Vue实现图片点击隐藏效果
    前言:组件作为Vue.js最强大的功能之一,因其封装可复用的代码方便程序员调用和可根据需求对组件进行个性化开发而深受广大前端程序员的喜爱。组件化的开发大大提升了代码的复......