界面文件activity_main.xml<Button
android:id="@+id/createButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/hello_world"
android:text="createdatabase"/>
<Button
android:id="@+id/updateButton"
a..
分类:
移动开发 时间:
2014-11-19 18:54:14
阅读次数:
303
点击Start按钮,每隔3秒在Logcat里打印一句话<Button
android:id="@+id/startButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Start"/>
<Button
android:id="@+id/endButton"
android:layout_width="fill_parent"
a..
分类:
移动开发 时间:
2014-11-19 02:07:42
阅读次数:
216
窗口创建的标志#define WM_CF_HASTRANS (1<<0) /* Has transparency. Needs to be defined for windows which do not fill the entire ...
分类:
其他好文 时间:
2014-11-18 17:23:44
阅读次数:
197
线性布局<?xmlversion="1.0"encoding="utf-8"?>
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<!--
android:id为控件..
分类:
移动开发 时间:
2014-11-17 19:43:38
阅读次数:
283
第一步:为了更好的比较,准备两个一模一样的EditText(当Activity启动时,焦点会在第一个EditText上,如果你不希望这样只需要写一个高度和宽带为0的EditText即可避免,这里就不这么做了),代码如下:viewplain<EditTextandroid:layout_width="fill_parent"android:layout_he..
分类:
其他好文 时间:
2014-11-17 19:40:31
阅读次数:
218
EditText是Android非常常见的属性,但是设置他的高度后,光标在EditText控件的中间显示,于是上网查阅了一下资料,才发现原来只需要设置一个属性就可以让光标从头显示,下面贴上代码<EditText
android:layout_width="fill_parent"
android:layout_height="200dip"
android:l..
分类:
移动开发 时间:
2014-11-13 13:05:31
阅读次数:
149
1.silver bulletOf all the monsters that fill the nightmares of our folklore, none terrify more than werewolves, because they transform unexpectedly fr...
分类:
其他好文 时间:
2014-11-12 21:04:40
阅读次数:
132
用一条语句写成的有关日期函数//1.生肖(年份参数:intls_year返回参数:string):mid(fill('鼠牛虎兔龙蛇马羊猴鸡狗猪',48),(mod(ls_year-1900,12)+13)*2-1,2)//2.天干地支(年份参数:intls_year返回参数:string):mid(...
分类:
其他好文 时间:
2014-11-12 19:25:45
阅读次数:
267
Android4.0以后的版本的EditText的新特征是以单下划线的形式出现,但是很多时候我们需要加上边框看起来比较美观.下面请看具体操作:分为两部分:未输入文本时的状态(normal)和点击输入文本的状态(focused).下面是EditText的控件:<EditText
android:layout_width="fill_parent"
..
分类:
移动开发 时间:
2014-11-12 18:13:41
阅读次数:
249
============问题描述============ 我想把这个LinearLayout宽度设置成为FILL_PARENT,源码如下LinearLayoutcheckboxLinearLayout=(LinearLayout)getLayoutInflater().inflate(R.layou...
分类:
其他好文 时间:
2014-11-11 16:24:10
阅读次数:
218