xml file
android: layout_width = "fill_parent"
android: layout_height = "wrap_content"
android: background = "@ drawable / suma_shape_image_bg"
android: orientation = "vertical">
android: layout_width = "fill_parent"
android: layout_height = "wrap_content"
android: spacing = "0dip" />
....
This is the gallery of the item corresponding getview
public View getView (int position, View convertView, ViewGroup parent) {
ImageView image = null;
if (convertView == null) {
image = new ImageView (mContext);
} else {
image = (ImageView) convertView;
}
/ / load images using ImageLoader
imageLoader.displayImage (resourceList.get (position) getPicUrl (), image, options.);
WindowManager wm = (WindowManager) mContext.getSystemService (Context.WINDOW_SERVICE);
int screenWidth = wm.getDefaultDisplay () getWidth ().;
image.setLayoutParams (new Gallery.LayoutParams (screenWidth, screenWidth * 211/516));
return image;
}
------ Solution --------------------------- -----------------
can not get the second , it is not clear ah , have not encountered such a case, the multi- point code affixed to look at how to set the , if you do not rely Gallery , I recommend using viewpage, personal recommendations .
------ Solution ---------------------------------------- ----
about beating about the interface automatically adjusts the picture , right ? Mobile passed, and adjust to the normal position , without displaying a picture that you do not load the obvious next picture
------ Solution --------------- -----------------------------
your position is not never changed ? To share what you refer to it. Feel you can change it to complete the above problem
package com.eoemobile.book.ex_widgetdemo;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.view.animation.AnimationUtils;
import android.widget.AdapterView;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Gallery;
import android.widget.ImageSwitcher;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.ViewSwitcher;
import android.widget.Gallery.LayoutParams;
public class ImageShowActivity extends Activity implements
AdapterView.OnItemSelectedListener, ViewSwitcher.ViewFactory {
CheckBox plain_cb;
CheckBox serif_cb;
CheckBox italic_cb;
CheckBox bold_cb;
@ Override
public void onCreate (Bundle savedInstanceState) {
super.onCreate (savedInstanceState);
requestWindowFeature (Window.FEATURE_NO_TITLE);
setContentView (R.layout.image_show);
setTitle ("ImageShowActivity");
mSwitcher = (ImageSwitcher) findViewById (R.id.switcher);
mSwitcher.setFactory (this);
mSwitcher.setInAnimation (AnimationUtils.loadAnimation (this,
android.R.anim.fade_in));
mSwitcher.setOutAnimation (AnimationUtils.loadAnimation (this,
android.R.anim.fade_out));
Gallery g = (Gallery) findViewById (R.id.gallery);
g.setAdapter (new ImageAdapter (this));
g.setOnItemSelectedListener (this);
}
public void onItemSelected (AdapterView parent, View v, int position, long id) {
mSwitcher.setImageResource (mImageIds [position]);
}
public void onNothingSelected (AdapterView parent) {
}
public View makeView () {
ImageView i = new ImageView (this);
i.setBackgroundColor (0xFF000000);
i.setScaleType (ImageView.ScaleType.FIT_CENTER);
i.setLayoutParams (new ImageSwitcher.LayoutParams (LayoutParams.FILL_PARENT,
LayoutParams.FILL_PARENT));
return i;
}
private ImageSwitcher mSwitcher;
public class ImageAdapter extends BaseAdapter {
public ImageAdapter (Context c) {
mContext = c;
}
public int getCount () {
return mThumbIds.length;
}
public Object getItem (int position) {
return position;
}
public long getItemId (int position) {
return position;
}
public View getView (int position, View convertView, ViewGroup parent) {
ImageView i = new ImageView (mContext);
i.setImageResource (mThumbIds [position]);
i.setAdjustViewBounds (true);
i.setLayoutParams (new Gallery.LayoutParams (
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
i.setBackgroundResource (R.drawable.picture_frame);
return i;
}
private Context mContext;
}
private Integer [] mThumbIds = {
R.drawable.sample_thumb_0, R.drawable.sample_thumb_1,
R.drawable.sample_thumb_2, R.drawable.sample_thumb_3,
R.drawable.sample_thumb_4, R.drawable.sample_thumb_5,
R.drawable.sample_thumb_6, R.drawable.sample_thumb_7};
private Integer [] mImageIds = {
R.drawable.sample_0, R.drawable.sample_1, R.drawable.sample_2,
R.drawable.sample_3, R.drawable.sample_4, R.drawable.sample_5,
R.drawable.sample_6, R.drawable.sample_7};
}
XML:
android: layout_width = "fill_parent"
android: layout_height = "fill_parent"
android: layout_alignParentTop = "true"
android: layout_alignParentLeft = "true" />
android: layout_width = "fill_parent"
android: layout_height = "60dp"
android: layout_alignParentBottom = "true"
android: layout_alignParentLeft = "true"
android: gravity = "center_vertical"
android: spacing = "16dp" />
- ---- Solution -------------------------------------------- < br>
package org.crazyit.gallery;
import android.app.Activity;
import android.content.res.TypedArray;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.view.animation.AnimationUtils;
import android.widget.AdapterView.OnItemSelectedListener;
import android.widget.AdapterView;
import android.widget.BaseAdapter;
import android.widget.Gallery;
import android.widget.ImageSwitcher;
import android.widget.ImageView;
import android.widget.Gallery.LayoutParams;
import android.widget.ViewSwitcher.ViewFactory;
/**
* Description:
* <br/>site: <a href="http://www.crazyit.org">crazyit.org</a>
* <br/>Copyright (C), 2001-2012, Yeeku.H.Lee
* <br/>This program is protected by copyright laws.
* <br/>Program Name:
* <br/>Date:
* @author Yeeku.H.Lee kongyeeku@163.com
* @version 1.0
*/
public class GallaryTest extends Activity
{
int[] imageIds = new int[]
{
R.drawable.shuangzi, R.drawable.shuangyu,
R.drawable.chunv, R.drawable.tiancheng, R.drawable.tianxie,
R.drawable.sheshou, R.drawable.juxie, R.drawable.shuiping,
R.drawable.shizi, R.drawable.baiyang, R.drawable.jinniu,
R.drawable.mojie };
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final Gallery gallery = (Gallery) findViewById(R.id.gallery);
// 获取显示图片的ImageSwitcher对象
final ImageSwitcher switcher = (ImageSwitcher)
findViewById(R.id.switcher);
// 为ImageSwitcher对象设置ViewFactory对象
switcher.setFactory(new ViewFactory()
{
@Override
public View makeView()
{
ImageView imageView = new ImageView(GallaryTest.this);
imageView.setBackgroundColor(0xff0000);
imageView.setScaleType(ImageView.ScaleType.FIT_CENTER);
imageView.setLayoutParams(new ImageSwitcher.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
return imageView;
}
});
// 设置图片更换的动画效果
switcher.setInAnimation(AnimationUtils.loadAnimation(this,
android.R.anim.fade_in));
switcher.setOutAnimation(AnimationUtils.loadAnimation(this,
android.R.anim.fade_out));
// 创建一个BaseAdapter对象,该对象负责提供Gallery所显示的图片
BaseAdapter adapter = new BaseAdapter()
{
@Override
public int getCount()
{
return imageIds.length;
}
@Override
public Object getItem(int position)
{
return position;
}
@Override
public long getItemId(int position)
{
return position;
}
// 该方法的返回的View就是代表了每个列表项
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
// 创建一个ImageView
ImageView imageView = new ImageView(GallaryTest.this);
imageView
.setImageResource(imageIds[position % imageIds.length]);
// 设置ImageView的缩放类型
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setLayoutParams(new Gallery.LayoutParams(75, 100));
TypedArray typedArray = obtainStyledAttributes(
R.styleable.Gallery);
imageView.setBackgroundResource(typedArray.getResourceId(
R.styleable.Gallery_android_galleryItemBackground, 0));
return imageView;
}
};
gallery.setAdapter(adapter);
gallery.setOnItemSelectedListener(new OnItemSelectedListener()
{
// 当Gallery选中项发生改变时触发该方法
@Override
public void onItemSelected(AdapterView<?> parent, View view,
int position, long id)
{
switcher.setImageResource(imageIds[position % imageIds.length]);
}
@Override
public void onNothingSelected(AdapterView<?> parent)
{
}
});
}
}
The above is an example of their landlord controls , pictures need Luzhu own definition ,
what is the layout file
<?xml version="1.0" encoding="utf-8"?>hoping to help you
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- 定义一个ImageSwitcher组件 -->
<ImageSwitcher android:id="@+id/switcher"
android:layout_width="320dp"
android:layout_height="320dp"
/>
<!-- 定义一个Gallery组件 -->
<Gallery android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="25dp"
android:unselectedAlpha="0.6"
android:spacing="3pt"
/>
</LinearLayout>
------ Solution -------------------------------- ------------
is not and ListView conflict ?
------ eference ------------------ ---------------------
------ eference --------------------------- ------------
big God? Solving
------ eference ---------------------------------------
100 points nobody either . .
------ eference - --------------------------------------
what about shiver , you are referring to slide after you have a rebound effect
------ eference ------------------------------------ ---
Yes, it has been playing . . Can not get a second picture
------ eference ---------------------------------- -----
Gallery not used , try to use the next SurfaceView? Most games are made with SurfaceView, display pictures of what properly properly
------ eference ------------------------ ---------------
viewPager I used the next, not as gallery, while dragging with viewpaper, dragging down the range can not be too large, otherwise the meeting scroll . Instead of moving around .
help facie this gallery first question it.
------ eference --------------------------------------- < br> thank you brothers above reply , but their pit dug themselves buried . . . .
The reason is the use of Image-loader, then I put Image-loader memory , disk cache removed, as well. . The disadvantage is that every time from the Internet to let him fetch it.
saying that the problems with the framework really is hard to find ah. . .
options = new DisplayImageOptions.Builder ()
. showImageOnLoading (
GetItemId.getDrawableResIDByName (context, "suma_default_poster"))
. showImageForEmptyUri (
GetItemId.getDrawableResIDByName (context, "suma_default_poster"))
. showImageOnFail (GetItemId.getDrawableResIDByName (context, "suma_default_poster" ;) )
/ /. cacheInMemory (true )
/ /. cacheOnDisc (true)
没有评论:
发表评论