码迷,mamicode.com
首页 >  
搜索关键字:android_id    ( 471个结果
Android实现按钮点击效果(第一次点击变色,第二次恢复)
1、首先创建一个按钮 <Button android:id="@+id/click" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="点击变色" android:backgro ...
分类:移动开发   时间:2017-02-25 01:03:33    阅读次数:2446
Android常规布局方式和方法
一、关于给控件添加ID属性 如上所述,实际布局效果如下: 实际上为底部布局添加ID属性,是在定义其之前的位置。也即是说,在定义ListView时,为底部布局添加了ID属性。 其一使用了 android:layout_above="@+id/bottom";其二使用了 android:id="@id/ ...
分类:移动开发   时间:2017-02-14 21:54:51    阅读次数:224
自定义RatingBar
3.layer-list 简介: 将多个图片或上面两种效果按照顺序层叠起来 例如: 在布局文件中A.xml中: <RatingBar android:id="@+id/rb_star" android:layout_width="wrap_content" android:layout_height ...
分类:其他好文   时间:2017-02-13 13:39:18    阅读次数:189
SMS消息传递
<Button android:id="@+id/send" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="SendSMS" android:onClick="onClick"/>publicvoidonClick(Viewview){ sendSMS("5556","Hello..."); Toast.makeText(this,"hello",Toast.LENGTH..
分类:其他好文   时间:2017-02-09 23:59:48    阅读次数:257
RecyclerView+FloatingActionButton应用
一.效果图 二.实现步骤 1.XML布局-添加依赖 1 <LinearLayout 2 android:id="@+id/layout" 3 android:layout_width="match_parent" 4 android:layout_height="wrap_content" 5 an ...
分类:其他好文   时间:2017-02-09 23:43:53    阅读次数:1507
android include进来的组件 调用其子元素
include标签包裹着一个可复用的布局: <include layout="@layout/footer_detail" android:id="@+id/footer" android:layout_width="match_parent" android:layout_height="wrap ...
分类:移动开发   时间:2016-12-30 18:48:23    阅读次数:200
Android的编码规范
一、Android编码规范 1、学会使用string.xml文件 在我看来,当一个文本信息出现的次数大于一次的时候就必须要使用string.xml 比如一个保存按钮 , 不规范写法: <Button android:id="@+id/editinfo_btn_save" android:layout ...
分类:移动开发   时间:2016-12-20 16:13:39    阅读次数:298
Android 中使用MediaRecorder实现视频录制功能
设置视频录制的简易界面<SurfaceView android:id="@+id/surface" android:layout_width="match_parent" android:layout_height="match_parent" /> <LinearLayout android:la ...
分类:移动开发   时间:2016-12-14 19:12:31    阅读次数:308
android的ListView图文混搭
main4.xml<?xmlversion="1.0"encoding="utf-8"?> <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <ListView android:id="@+id/listView4_1_1" ..
分类:移动开发   时间:2016-12-13 16:37:23    阅读次数:231
控件1:TextView和EditText
1.TextView:显示文本控件 属性:android:id 控件的id android:layout_width 控件的宽度 android:layout_height 控件的高度 android:layout_text 文本内容 android:layout_textSize 文本大小 and ...
分类:其他好文   时间:2016-12-05 23:16:05    阅读次数:264
471条   上一页 1 ... 7 8 9 10 11 ... 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!