首页 > 其他分享 >ImageAdapter和PopupWindow的使用

ImageAdapter和PopupWindow的使用

时间:2023-06-20 17:01:28浏览次数:36  
标签:PopupWindow popup return int imageView 使用 ImageAdapter position public


public class SamplePopup extends Activity {
	 PopupWindow popup;
	 //GridView gView;
	 GridView gView;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        final LayoutInflater inflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        final LinearLayout musicGrid = (LinearLayout) inflater.inflate(R.layout.gridviewpopup, null, false);
          gView = (GridView) musicGrid.findViewById(R.id.gridview);
        
        gView.setAdapter(new ImageAdapter(this));
        
         popup = new PopupWindow(this);
        popup.setContentView(musicGrid);
        popup.setTouchable(true);
        popup.setFocusable(true);
        
       
     
        gView.setOnItemClickListener(new Gallery.OnItemClickListener() 
        {
        	
            public void onItemClick(AdapterView<?> parent, View v, int position, long id) 
            {   Log.i("huhudhufhud","");
               // popup.showAsDropDown(findViewById(R.id.main));
            	popup.dismiss();
                 
            }
           
        }); 
      
        final Button popupButton = (Button) findViewById(R.id.popup);
        popupButton.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
            	popup.setWidth(300);
            	popup.setHeight(200);
            	popup.showAtLocation(findViewById(R.id.main), Gravity.CENTER, 0, 0);
            }
        });
        
    }
    
 }

 粉红色部分就是vpopupwindow要使用的,红色的部分一定要添加 不然点击事件不执行。

layout.gridviewpopup 如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:id="@+id/gridviewparent"
	android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingLeft="10dip"
    android:paddingRight="10dip"
    android:paddingTop="10dip"
    android:paddingBottom="10dip"
    android:gravity="center_horizontal" >
	<GridView 
		android:id="@+id/gridview" 
    	android:layout_width="fill_parent" 
   		android:layout_height="fill_parent"
    	android:numColumns="auto_fit"
    	android:verticalSpacing="30dp"
    	android:horizontalSpacing="15dp"
    	android:stretchMode="columnWidth"
    	android:gravity="center"
	/>
</LinearLayout>

 

main

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:id="@+id/main"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <Button
        android:id="@+id/popup"
        android:scaleType="centerInside"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="POPUP"
        	/>
 </LinearLayout>

 

attrs如下

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="Gallery1">
        <attr name="android:galleryItemBackground" />
    </declare-styleable>
</resources>

 

这个呢只是图片的一个外边框背景。

ImageAdapter的扩展

public class ImageAdapter extends BaseAdapter {
    private Context mContext;
    private int itemBackground;

    public ImageAdapter(Context c) {
        mContext = c;
    
      //---setting the style---
        TypedArray a = c.obtainStyledAttributes(R.styleable.Gallery1);
        itemBackground = a.getResourceId(R.styleable.Gallery1_android_galleryItemBackground, 0);
        a.recycle();
    }

    public int getCount() {
        return images.length;
    }

    public Object getItem(int position) {
    //return images[position];
    	return position;
    }

    public long getItemId(int position) {
        return position;
    }

    public View getView(int position, View convertView, ViewGroup parent) {
        ImageView imageView;
        if (convertView == null) {
            imageView = new ImageView(mContext);
        } else {
            imageView = (ImageView) convertView;
        }
        imageView.setImageResource(images[position]);
        imageView.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
        imageView.setBackgroundResource(itemBackground);
        return imageView;
        
    }
    public Integer[] images = {
    		R.drawable.android,
    		R.drawable.icon,
    		R.drawable.android
    };
}

 

 

 

标签:PopupWindow,popup,return,int,imageView,使用,ImageAdapter,position,public
From: https://blog.51cto.com/u_16166892/6523979

相关文章

  • 扩展LinearLayout以及从xml中加载menu,selector的使用
    在包.com.test1.android.anim中为什么单独写这个包名要用到publicclassSlidingPanelextendsLinearLayout{ privateintspeed=300; privatebooleanisOpen=false; publicSlidingPanel(finalContextctxt,AttributeSetattrs){ super(ctxt,attrs); TypedArr......
  • MapView Overlay Drawable 的使用
    packageorg.yexing.mapdemos;GraphicOverlay.javaimportandroid.graphics.Canvas;//importandroid.graphics.Paint;//importandroid.graphics.RectF;importandroid.graphics.drawable.BitmapDrawable;importandroid.graphics.drawable.Drawable;impor......
  • 使用graylog rest api查询日志
    由于项目需要,调研使用graylog收集项目操作日志,并使用api查询日志python代码if__name__=='__main__':importrequestssearch_content={"query_string":{"type":"elasticsearch","query_string&q......
  • React 性能優化:使用 memo、useCallback、useMemo
    在寫網頁時,我們通常習慣把一個頁面切割成很多的元件(Component),讓我們容易組織與管理頁面的組成。但是在React中複雜的元件關係,如果沒有經過優化,將有可能會造成性能上的問題。在FunctionComponent中,重新渲染(re-render)很輕易就會被觸發,少量的元件時還不會發生太大的問......
  • Diffusers框架使用Civitai上的checkpoit和lora模型
    1、实验室有一台带显卡的机器,能访问huggingface但访问不了Civitai,而Civitai上的模型多是webui训练来的也不能直接用到diffusers框架上,于是需要利用Colab把Civitai上的模型转化成diffusers可用再上传到huggingface上,再下载到本地。2、googlecolab上新建一个笔记本,再选修改==》笔......
  • Postgresql使用中踩过的坑
    一,日期类型的比较问题数据库中存储日期的字段为timestamp类型,而Java对象中对应属性的类型的Date类型,两者进行比较时,需要进行一定的格式转换。案例:数据库中存储的日期存在时分秒,现在要查询某个时间(某年某月某日)的数据,直接比较查询可能因为时分秒的不同导致查询到的数据为......
  • 使用flutter_background_service创建后台服务
    介绍flutter_background_service,它是一个在Flutter应用中创建和管理后台服务的库,并提供了一种简单的方式来执行长时间运行的任务。使用方法下面是关于flutter_background_service的使用方法的详细介绍:1、创建服务使用flutter_background_service库,你可以创建一个后台服......
  • 爬虫代理ip使用时突然停了会如何
       当爬虫程序使用代理ip进行网络请求时,如果代理突然停了或出现其他问题,将会对程序的正常运行产生一定影响。下面我来介绍一下这种情况下可能出现的问题及解决方法。代理突然停止的影响 1.请求失败 当代理突然停止或无法连接时,爬虫程序将无法正常发送网络请求,导致请求......
  • 页面初始化使用this.$refs 为undefined
    在updated(){},中使用 链接:(33条消息)Vue中在mounted中通过this.$refs但是获取不到属性的几种常见情况分析_vue组件在mounted里面this.refs_林间有风H的博客-CSDN博客......
  • 数据指纹的生成,hashlib.md5的使用
    content=li.xpath('./div[1]/text()').extract_first()title=li.xpath('./div[2]/a/text()').extract_first()all_data=title+content#生成该数据的数据指纹importhashlib#导入一个生成数据指纹的模块m......