編輯:關於Android編程
判斷ImageView圖片是否存在,未加載成功,就顯示默認圖片。
if (mPhotoView.getDrawable() == null) { // Toast.makeText(getActivity(), 圖片加載失敗, Toast.LENGTH_SHORT).show(); mPhotoView.setImageDrawable(getResources().getDrawable(R.drawable.icon_default_user_photo)); }
ByteArrayOutputStream out = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.PNG, 100, out); byte[] array= out.toByteArray();
Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
Drawable drawable = new FastBitmapDrawable(bitmap);
Canvas canvas = new Canvas(bitmap) drawable.draw(canvas)
Drawable drawable = activity.getResources().getDrawable(R.drawable.icon);
Bitmap bitmap = BitmapFactory. decodeResource (Resources res, int id)
iphone上有開關控件,很漂亮,其實android4.0以後也有switch控件,但是只能用在4.0以後的系統中,這就失去了其使用價值,而且我覺得它的界面也不是很好看。
不少玩家會想到將圖片拷貝到電腦中,然後用PS等工具去標注編輯加工,然在再發送到朋友圈或社交平台。那麼,轉來轉去,是不是也不太方便呢?其實Android手機也
本人所有文章首先發布於個人博客,歡迎關注,地址:http://blog.isming.me 昨天正式發布了android 5,同時android developer
一、問題描述使用百度地圖實現如圖所示應用,首先自動定位當前我起始位置(小圓點位置),並跟隨移動不斷自動定位我的當前位置百度Api不同版本使用會有些差異,本例中加入lib如