欢迎访问 生活随笔!

凯发ag旗舰厅登录网址下载

当前位置: 凯发ag旗舰厅登录网址下载 > 运维知识 > android >内容正文

android

java头像选择系统-凯发ag旗舰厅登录网址下载

发布时间:2024/10/12 android 16 豆豆
凯发ag旗舰厅登录网址下载 收集整理的这篇文章主要介绍了 java头像选择系统_android 超高仿微信图片选择器(头像选择) 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

【实例简介】

【实例截图】

【核心代码】

头像选择

package com.zhy.utils;

import java.util.list;

import android.content.context;

import android.graphics.drawable.bitmapdrawable;

import android.view.motionevent;

import android.view.view;

import android.view.view.ontouchlistener;

import android.widget.popupwindow;

public abstract class basepopupwindowforlistview extends popupwindow

{

/**

* 布局文件的最外层view

*/

protected view mcontentview;

protected context context;

/**

* listview的数据集

*/

protected list mdatas;

public basepopupwindowforlistview(view contentview, int width, int height,

boolean focusable)

{

this(contentview, width, height, focusable, null);

}

public basepopupwindowforlistview(view contentview, int width, int height,

boolean focusable, list mdatas)

{

this(contentview, width, height, focusable, mdatas, new object[0]);

}

public basepopupwindowforlistview(view contentview, int width, int height,

boolean focusable, list mdatas, object... params)

{

super(contentview, width, height, focusable);

this.mcontentview = contentview;

context = contentview.getcontext();

if (mdatas != null)

this.mdatas = mdatas;

if (params != null && params.length > 0)

{

beforeinitweneedsomeparams(params);

}

setbackgrounddrawable(new bitmapdrawable());

settouchable(true);

setoutsidetouchable(true);

settouchinterceptor(new ontouchlistener()

{

@override

public boolean ontouch(view v, motionevent event)

{

if (event.getaction() == motionevent.action_outside)

{

dismiss();

return true;

}

return false;

}

});

initviews();

initevents();

init();

}

protected abstract void beforeinitweneedsomeparams(object... params);

public abstract void initviews();

public abstract void initevents();

public abstract void init();

public view findviewbyid(int id)

{

return mcontentview.findviewbyid(id);

}

protected static int dptopx(context context, int dp)

{

return (int) (context.getresources().getdisplaymetrics().density * dp 0.5f);

}

}

总结

以上是凯发ag旗舰厅登录网址下载为你收集整理的java头像选择系统_android 超高仿微信图片选择器(头像选择)的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得凯发ag旗舰厅登录网址下载网站内容还不错,欢迎将凯发ag旗舰厅登录网址下载推荐给好友。

网站地图