码迷,mamicode.com
首页 >  
搜索关键字:layout_height    ( 604个结果
android一个上传图片的例子,包括如何终止上传过程,如果在上传的时候更新进度条(一)
先上效果图: Layout为: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@...
分类:移动开发   时间:2014-08-10 10:27:50    阅读次数:631
Android -- Layout布局文件里的android:layout_height等属性为什么会不起作用?
有的时候,我们配置好的布局文件,在加载完成添加到我们的Activity中后发现,并没有安装我们设置的属性来布局,比如我们设置了android:layout_marginTop="100dip",但是运行程序后发现一点作用都没有,相似的还有layout_height等以android:layout_开...
分类:移动开发   时间:2014-08-07 21:35:30    阅读次数:210
android 关于setWidth()和setHeight()没反应的问题
在android开发过程中,对于控件的高度,宽度,虽然在xml中用android:layout_height="match_parent"设置了 高度(match_parent和fill_parent是一样的,2.2版本后就用match_parent代替fill_parent了。)但有时, 程序需要...
分类:移动开发   时间:2014-08-07 12:27:09    阅读次数:324
自定义的ChecBox 样式
.xml里面<CheckBoxandroid:id="@+id/checkBox1"android:layout_width="29dp"android:layout_height="29dp"android:layout_alignBaseline="@+id/textView1"android:layout_alignBottom="@+id/textView1"android:layout_alignParentRight="true"style="@style/CustomCheckboxT..
分类:其他好文   时间:2014-08-06 06:18:01    阅读次数:264
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=...
分类:移动开发   时间:2014-08-03 15:25:05    阅读次数:204
android一个注册页面和验证码的实现
先上效果图: 验证码采用PHP返回的imageview来实现,xml如下: <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" andr...
分类:移动开发   时间:2014-08-01 19:40:42    阅读次数:332
ImageButton动态改变按钮图片
在drawable 目录下增加一个myselector.xml文件,appwidget_play.png,appwidget_played.pngmyselector.xml文件中内容如下layout文件中:<ImageButton android:layout_height="wrap_conte...
分类:其他好文   时间:2014-08-01 13:10:11    阅读次数:236
如何让多行的EditText光标从最前头开始?
有时我们在做多行EditText的时候会出现光标在中间的问题: <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:minLines="5" android:background="#ffffff" android:paddi...
分类:其他好文   时间:2014-07-31 21:03:17    阅读次数:308
android-继承BaseAdapter--自定义适配器,getView执行多次的解决方法
定义的getView执行多次的ListView布局: <ListView android:id="@+id/lv_messages" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignParent...
分类:移动开发   时间:2014-07-30 20:58:54    阅读次数:256
Android学习笔记——Handler实例
Handler的实质就是异步消息处理。实例一:Handler的基本用法XML布局代码:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <T..
分类:移动开发   时间:2014-07-19 16:28:30    阅读次数:334
604条   上一页 1 ... 56 57 58 59 60 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!