码迷,mamicode.com
首页 >  
搜索关键字:fill    ( 3284个结果
Android学习笔记-SQLite的使用
界面文件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
Android学习笔记-Handler的使用
点击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
uCGUI窗口的创建
窗口创建的标志#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
Android学习笔记-Activity的布局
线性布局<?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设置获得焦点时的边框颜色
第一步:为了更好的比较,准备两个一模一样的EditText(当Activity启动时,焦点会在第一个EditText上,如果你不希望这样只需要写一个高度和宽带为0的EditText即可避免,这里就不这么做了),代码如下:viewplain<EditTextandroid:layout_width="fill_parent"android:layout_he..
分类:其他好文   时间:2014-11-17 19:40:31    阅读次数:218
Android日常知识收集与总结
EditText是Android非常常见的属性,但是设置他的高度后,光标在EditText控件的中间显示,于是上网查阅了一下资料,才发现原来只需要设置一个属性就可以让光标从头显示,下面贴上代码<EditText android:layout_width="fill_parent" android:layout_height="200dip" android:l..
分类:移动开发   时间:2014-11-13 13:05:31    阅读次数:149
个人阅读作业2
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
PB常用日期
用一条语句写成的有关日期函数//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.X版本的EditText恢复边框
Android4.0以后的版本的EditText的新特征是以单下划线的形式出现,但是很多时候我们需要加上边框看起来比较美观.下面请看具体操作:分为两部分:未输入文本时的状态(normal)和点击输入文本的状态(focused).下面是EditText的控件:<EditText android:layout_width="fill_parent" ..
分类:移动开发   时间:2014-11-12 18:13:41    阅读次数:249
代码设置LinearLayout的高度
============问题描述============ 我想把这个LinearLayout宽度设置成为FILL_PARENT,源码如下LinearLayoutcheckboxLinearLayout=(LinearLayout)getLayoutInflater().inflate(R.layou...
分类:其他好文   时间:2014-11-11 16:24:10    阅读次数:218
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!