自定义博客皮肤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)
  • 资源 (1)
  • 收藏
  • 关注

原创 相对布局RelativeLayout的子控件属性和操作

RelativeLayout是相对布局控件,它包含的子控件将以控件之间的相对位置或者子类控件相对父类容器的位置方式排列。子类控件常用属性android:layout_alignParentLeft -子类控件相对当前父类容器靠左android:layout_alignParentTop -子类控件相对当前父类容器靠上android:layout_marginLeft -子类

2017-03-22 18:59:49 6064

原创 线性布局LinearLayout常用属性

LinearLayout常用属性android:orientation—-该属性决定子类控件的排布方式,包括垂直(vertical)和水平(horizontal)android:gravity—-该属性决定子类的位置 1. center_vertical 垂直居中 2. center_horizontal 水平居中 3. center 居中 4. right 子类控件位于当

2017-03-21 15:55:58 1171

原创 RadioGrop和RadioButton

控件属性 <RadioGroup android:orientation="horizontal" android:id="@+id/radioGroup1" android:layout_width="wrap_content" android:layout_height="wrap_content" > <Rad

2017-03-21 11:18:14 1468

原创 CheckBox控件

控件属性<CheckBox android:id="@+id/checkBox1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="已婚" />事件响应cb = (CheckBox)findViewById(R.

2017-03-14 17:42:43 573

原创 ToggleButton控件的使用

本次主要介绍一下ToggleButton控件的使用,ToggleButton拥有两种不同的状态–On和Off. ToggleButton android:id="@+id/toggleButton1" android:layout_width="match_parent" android:layout_height="wrap_conten

2017-03-14 15:41:46 991

原创 AutoCompleteTextView和MultiAutoCompleteTextView的使用

在Layout文件中添加AutoCompleteTextView控件后,在xml文件中添加属性android:completionThreshold,表示在输入多少个字符以后进行字符串的匹配,如下。 AutoCompleteTextView android:id="@+id/autoCompleteTextView1" android:layout_w

2017-03-11 14:55:41 503

原创 TextView跑马灯效果的实现

当Layout中只有一个TextView需要实现跑马灯效果时,操作如下。 在Layout的TextView配置文件中增加 android:ellipsize="marquee" android:focusable="true" android:focusableInTouchMode="true" android:sin

2017-03-10 21:01:14 261

原创 设置Button监听事件的三种方式

设置Button监听事件的三种方式三种Button监听事件设置方法1.匿名内部类2.外部类3.接口方式匿名内部类直接创建匿名内部类。 loginButton.setOnClickListener(new OnClickListener() { @Override public void onCl

2017-03-10 20:17:51 8429

原创 使用Visual Studio建立报表--C#

使用Visual Studio建立报表–C #最近有不少同学问我Visual Studio Winform项目如何生成报表。在此作一下简单介绍。首先确定你的Visual Studio版本中有Reportview这个控件。在项目上右键添加-新建项,选择Reporting中的报表。 同样右键添加-新建项,选择数据中的数据集。 在刚刚新建的数据集-dataset1中右键添加-DataTable。 通

2016-12-15 17:26:39 7369 5

The.Art.And.Science.Of.Java

The.Art.And.Science.Of.Java 英文版

2015-08-21

空空如也

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

TA关注的人

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