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
一、关于给控件添加ID属性 如上所述,实际布局效果如下: 实际上为底部布局添加ID属性,是在定义其之前的位置。也即是说,在定义ListView时,为底部布局添加了ID属性。 其一使用了 android:layout_above="@+id/bottom";其二使用了 android:id="@id/ ...
分类:
移动开发 时间:
2017-02-14 21:54:51
阅读次数:
224
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
<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
一.效果图 二.实现步骤 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
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编码规范 1、学会使用string.xml文件 在我看来,当一个文本信息出现的次数大于一次的时候就必须要使用string.xml 比如一个保存按钮 , 不规范写法: <Button android:id="@+id/editinfo_btn_save" android:layout ...
分类:
移动开发 时间:
2016-12-20 16:13:39
阅读次数:
298
设置视频录制的简易界面<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
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:显示文本控件 属性:android:id 控件的id android:layout_width 控件的宽度 android:layout_height 控件的高度 android:layout_text 文本内容 android:layout_textSize 文本大小 and ...
分类:
其他好文 时间:
2016-12-05 23:16:05
阅读次数:
264