随笔分类 - Android
有关android studio相关信息
自定义方法参数注释快捷键
摘要:自定义方法参数注释快捷键 1.打开File-->Settings-->Keymap 2.(1)直接打开other-->找到 Fix doc comment (如下图1) (2)直接搜索comment (如下图2) 3.右击Fix doc comment 选择Add Keyboard Shortcut
阅读全文
This Activity already has an action bar supplied by the window decor Do not request Window.FEATURE_SUPPORT_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead
摘要:Caused by: java.lang.IllegalStateException: This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_SUPPOR
阅读全文
文档注释
摘要:文档注释 1.首先打开File-->Settings-->Editor-->Live Templates(如下图1) 2.点击右侧加号,选中第二个创建组,可以随意命名。这里命名Author。(如下图2) 3.选中Author点击右侧加号选中第一个创建子类组这里命名author(这个命名是你在以后.c
阅读全文
自定义控件-平铺图片
摘要:使图片平铺背景 在这里使用自定义控件为了使图片能够铺平整个控件背景。 首先在样式里定义控件和属性 style: <declare-styleable name="RatioLayout"> <attr name="ratio" format="float"/></declare-styleable>
阅读全文
资源Drawable之Shape详情
摘要:Shape 翻译:形状 可用于:Shape可以定义控件的一些展示效果,例如圆角,渐变,填充,描边,大小,边距;shape子标签就可以实现这些效果 其shape属性有ectangle:矩形(默认) oval:椭圆 line:水平线 ring:环形 子标签(常用) 子标签有下面几个属性:corners,
阅读全文