欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android實(shí)現(xiàn)圖片滾動效果

 更新時(shí)間:2020年09月17日 14:56:52   作者:堯堯?qū)氊? 
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)圖片滾動效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

Android開發(fā)圖片滾動效果,供大家參考,具體內(nèi)容如下

效果圖:

設(shè)置適配來設(shè)置圖片位置大小

package com.example.gallary;
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 ImageAdapter extends BaseAdapter { 
 private Context mContext; // 圖片數(shù)組源
 private Integer[] imgs = { R.drawable.img1, R.drawable.img2, R.drawable.img3, R.drawable.img4, R.drawable.img5, R.drawable.img6, R.drawable.img7};
 public ImageAdapter(Context c) { mContext = c; } 
 @Override 
 public int getCount() { return imgs.length; } // 獲取圖片位置
 @Override 
 public Object getItem(int position) { return imgs[position]; } // 獲取圖片ID 
 @Override 
 public long getItemId(int position) { return position; } 
 @Override 
 public View getView(int position, View convertView, ViewGroup parent) { 
 ImageView imageview = new ImageView(mContext); 
 imageview.setImageResource(imgs[position]); 
 imageview.setLayoutParams(new Gallery.LayoutParams(240, 200)); // 設(shè)置布局 圖片120×120顯示 
 imageview.setScaleType(ImageView.ScaleType.CENTER); // 設(shè)置顯示比例類型(不縮放) 
 return imageview; }
 }

main添加圖片資源

package com.example.gallary;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.Gallery;
import android.widget.Toast;
 public class MainActivity extends Activity { 
 @Override public void onCreate(Bundle savedInstanceState) { 
 super.onCreate(savedInstanceState); 
 setContentView(R.layout.activity_main); 
 Gallery gallery = (Gallery) findViewById(R.id.gallery); 
 gallery.setAdapter(new ImageAdapter(this)); // gallery添加ImageAdapter圖片資源 
 
 } 
 
 }

布局

<TextView   
 android:id="@+id/tv"  
 android:layout_width="fill_parent"  
 android:layout_height="wrap_content"  
 android:gravity="center"      
 android:layout_gravity="center"     
 android:layout_marginTop="50dip"  
 android:textColor="#ffff0000"  
 android:textSize="30sp"  
 android:text="滾動圖片"/>  
<Gallery  
 android:id="@+id/gallery" 
 android:layout_width="fill_parent" 
 android:layout_height="wrap_content" 
 android:layout_marginTop="10dip" 
 android:layout_below="@id/tv" />

drawable放置圖片資源

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論