安卓UI设计之圆角矩形的ImageView Android
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Bitmap.Config;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.RectF;
imp
标签: android
Android 图片阴影处理分析! Android
最近在做一个Android位图阴影处理的效果,今天把思路总结一下:
分析如下:
Android sdk提供了BlurMaskFilter工具类可以给图片添加阴影效果,代码如下:
标签: android
FragmentStatePagerAdapter.notifyDataSetChanged不刷新页面的解决办法 Android
公司做医疗产品的,显示操作用的是android,所以我就用上下两个部分大致是固定的,只有中间会有6个页面的切换,其中会有两个用户的切换,即普通用
标签: android
Unity打包后的APK包反编译 Android
笔者使用的是apktool,首先在网上下载apktool工具,不需要安装,解压后的目录内容如下将此目录添加到Path环境变量中。在Dos窗口下,先cd到ap
标签: android
动态设置布局LayoutInflater Android
LayoutInflater作用是将layout的xml布局文件实例化为View类对象,LayoutInflater 的作用类似于 findViewById(),不同点是LayoutInflater是用来找layout文件夹下的xml布局
标签: android
安卓学习3-布局管理-TableLayout Android
API:file:///D:/Android/sdk/docs/reference/android/widget/TableLayout.htmllayout文件:<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools=&qu
标签: android
display getSize() Android
If you want the the display dimensions in pixels you can use getSize: Display display = getWindowManager().getDefaultDisplay(); Point size = new Point(); display.getSize(size); int width = s
标签: android
Landroid/support/v7/internal/widget/ActionBarOverlayLayout;.stopNestedScroll Android
使用ToorBar 时候运行时候常报错误:VFY: unable to resolve virtual method 9386: Landroid/support/v7/internal/widget/ActionBarOverlayLay...
标签: android
PreferenceActivity与PreferenceFragment应用 Android
PreferenceActivityPreferenceActivity是一个非常有用的基类,当进行选项配置时,选项设置会以参数的形式保存,用Preferences进行保存。当Activity类继承Preferenc
标签: android
安卓学习3-布局管理-LinearLayout Android
API地址:file:///D:/Android/sdk/docs/reference/android/widget/LinearLayout.htmllayout文件:<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
and
标签: android