Android
文章平均质量分 78
uarielc
这个作者很懒,什么都没留下…
展开
-
Android自定义对话框
Android提供的对话框常常不能满足项目需求,原创 2014-10-16 10:06:32 · 423 阅读 · 0 评论 -
TextView setCompoundDrawables()
setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) /** * Sets the Drawables (if any) to appear to the left of, above,原创 2014-08-29 11:33:28 · 1372 阅读 · 0 评论 -
Android 4.0以下系统FrameLayout 子View setMargin失效
遇到4.0以上系统显示正常,4.0以下系统原创 2014-09-02 14:52:17 · 835 阅读 · 0 评论 -
Android关于Bitmap的几个方法
1.保存Bitmap到SD卡 private String ALBUM_PATH = Environment.getExternalStorageDirectory().getAbsolutePath() + "/"; private void saveFile(Bitmap bm) throws IOException { File dirFile = new File(ALBUM_原创 2015-01-30 22:01:34 · 425 阅读 · 0 评论 -
android:shape 属性
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape=["rectangle" | "oval" | "line" | "ring"] > <corners android:radius="integer" android:topLeft原创 2014-09-09 16:36:10 · 380 阅读 · 0 评论 -
This tag and its children can be replaced by one <TextView/> and a compound drawable
写了一个这样的布局:原创 2014-08-29 09:54:55 · 776 阅读 · 0 评论 -
Android Animation(一)XML属性
Android的两种Animation模式:1.Tween原创 2014-08-30 15:16:34 · 896 阅读 · 0 评论 -
android.view.InflateException: Binary XML file line #1: Error inflating class
第二次遇到这个问题,虽然不知道是为什么,原创 2014-09-05 16:09:29 · 974 阅读 · 0 评论 -
Android多线程学习(一):使用Thread异步下载图像
这是一个使用 Android Thread 从网络上异步下载图片并在 ImageView 中显示的的简单示例。因为需要访问网络,所以要在 manifest.xml 中添加网络访问权限:原创 2014-08-27 17:26:24 · 551 阅读 · 0 评论