草庐IT

ideAndroid

全部标签

Android 将图片网址url转化为bitmap,drawable转bitmap,file转bitmap,bitmap转file,Bitmap转String,Uri转Bitmap

file转bitmapFileparam=newFile();Bitmapbitmap=BitmapFactory.decodeFile(param.getPath());drawable转bitmapBitmapbmp=BitmapFactory.decodeResource(getResources(),R.mipmap.jcss_03);url转bitmapBitmapbitmap;publicBitmapreturnBitMap(finalStringurl){newThread(newRunnable(){@Overridepublicvoidrun(){URLimageurl=nu

ExpandableListView的基本使用

Adapter类控件是ExpandableListView,就是可折叠的列表,它是ListView的子类,在ListView的基础上它把应用中的列表项分为几组,每组里又可包含多个列表项。1.相关属性android:childDivider:指定各组内子类表项之间的分隔条,图片不会完全显示,分离子列表项的是一条直线android:childIndicator:显示在子列表旁边的Drawable对象,可以是一个图像android:childIndicatorEnd:子列表项指示符的结束约束位置android:childIndicatorLeft:子列表项指示符的左边约束位置android:chil
12