自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(9)
  • 问答 (3)
  • 收藏
  • 关注

原创 EditText控件的使用

1.添加表情图片1.在布局文件添加Edittext 和button <EditText android:id="@+id/edit" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginT

2016-02-03 18:00:43 130

原创 《老罗Android开发视频教程》第五集:android表格布局的介绍

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_par

2016-01-28 22:29:21 129

原创 《老罗Android开发视频教程》第四集:android相对布局的使用

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_par

2016-01-28 21:34:45 149

原创 《老罗Android开发视频教程》第二集:android线性布局的介绍

Android系统中,任何的可视化控件都是从android.view.View继承的。1.使用XML方式来配置VIew的相关属性,然后装载这些view.2.完全使用java代码来创建View计算器的界面<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tool

2016-01-28 14:59:57 134

原创 老罗Android视频第一版-------android使用意图传递数据之返回结果

1.在main.xml文件<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_he

2016-01-28 13:12:42 148

原创 老罗Android视频第一版-------android使用静态变量传递数据

使用Intent可以在不同的Activity之间传递数据,但是有一定的局限性,就是Intent无法传递序列化的对象,可以使用静态变量来解决问题.1.MainActivity添加一个Button<Button android:id="@+id/button" android:layout_width="fill_parent" android:

2016-01-28 11:10:55 124

原创 老罗Android视频第一版-------android使用意图传递数据之通用方式

1.在MainActivity添加一个按钮 <Button android:id="@+id/btn" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="使用Intent传递数据通用方式" >2.新建

2016-01-28 10:55:24 165

原创 老罗Android视频第一版-------android使用意图传递数据之剪切板传递

1.在activity_main.xml添加一个Button <Button android:id="@+id/btn" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="使用剪切板传递数据" />2.新建

2016-01-27 21:36:12 84

原创 老罗Android视频第一版-------android使用意图传递数据之全局变量传递

1.在activity_main.xml文件中加入一个button按钮<Button android:id="@+id/btn" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="使用Application传递全

2016-01-27 19:54:37 156

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除