
android
文章平均质量分 53
安静呆一会儿
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
actionbar
style.xml中 @drawable/back原创 2014-03-28 10:51:29 · 471 阅读 · 0 评论 -
打开文件
Intent intent = new Intent(); Uri selectedImageUri = Uri.fromFile( f ); intent.setDataAndType( selectedImageUri, image/jpg"); intent.setAction(Intent.ACTION_VIEW); startActivity( intent );转载 2014-04-29 09:18:30 · 403 阅读 · 0 评论 -
自绘控件
package com.dress; import android.content.Context; public class DrawView extends View { private Paint m_paint = new Paint(); private TextPaint m_paint_text = new TextPaint(); pri原创 2014-07-23 14:47:24 · 389 阅读 · 0 评论 -
android studio 快捷键
Ctrl+E,可以显示最近编辑的文件列表Shift+Click可以关闭文件Ctrl+[或]可以跳到大括号的开头结尾Ctrl+Shift+Backspace可以跳转到上次编辑的地方Ctrl+F12,可以显示当前文件的结构Ctrl+F7可以查询当前元素在当前文件中的引用,然后按F3可以选择Ctrl+N,可以快速打开类Ctrl+Shift+N,可以快速打开文件Alt+Q可以看到当前方法的声明Ctrl+W原创 2015-01-16 23:07:04 · 344 阅读 · 0 评论