码迷,mamicode.com
首页 >  
搜索关键字:layout_width    ( 981个结果
gridview实例
<GridViewandroid:id="@+store/grid"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_below="@store/main_daohang"android:numColumns="3"九宫格一行显示三个android:gravity="center"九宫格居中android:verticalSpacing="5dp"垂直..
分类:其他好文   时间:2014-05-25 21:09:16    阅读次数:304
2G03-view-radio-group
注意两点 1.通过android:checkedButton="@+id/lunch"而不是item中的 android:checked="true"设置的某人被选中状态 <RadioGroup android:layout_width="match_parent" android:layout_height="wrap_content" a...
分类:其他好文   时间:2014-05-23 00:04:35    阅读次数:344
3.addView调用之后导致子布局的android:layout_width="match_parent"属性或者 android:layout_width="fll_parent"属性无效。
典型错误案例:         经常我们会通过addView方法,动态添加一些子布局,比如下面的一段代码. LinearLayout linParent = (LinearLayout) findViewById(R.id.aty_slider_linParent);View vChild = mInflater.inflate(R.layout.view_loding, null);linP...
分类:移动开发   时间:2014-05-22 09:41:22    阅读次数:553
RadioButton一定要设置id,会导致radiobutton不互斥,后果很严重。。
今天编写代码如下:发现2个radiobutton居然都可以选中。这我真的晕了。。后来偶然发现原来是没有设置Id的原因。。。         android:layout_width="fill_parent"         android:layout_height="wrap_content"         android:orientation="horizont...
分类:其他好文   时间:2014-05-21 17:12:25    阅读次数:246
Android学习笔记(十七)——使用意图调用内置应用程序
使用意图调用内置应用程序 1、创建一个新的Android项目并命名为Intents,在main.xml文件中添加两个Button: <Button android:id="@+id/btn_webbrowser" android:layout_width="fill_parent" android:layout_heigh...
分类:移动开发   时间:2014-05-21 16:24:12    阅读次数:298
Android(3)
1.电话拨号器: activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" a...
分类:移动开发   时间:2014-05-13 15:08:57    阅读次数:508
Include设置layout_*无效解决方法
在include标签中不能省略 layout_width或者layout_height否则设置layout_weight就会无效。如下设置即可             android:id="@+id/linearLayout1"         android:layout_width="match_parent"         android:layout_height="w...
分类:其他好文   时间:2014-05-13 07:12:47    阅读次数:389
Android 自定义Adapter 但listview 只显示第一条数据
楼主让这个问题郁闷了一晚上。。。。。在logcat里明明显示adapter的getview方法里的list大于一条数据 ,但posotion却一直是0.。。。。运行后也只显示list[0]里面的数据。。。。最后的最后原来错误出在布局文件上    我以前的是这样的; <ScrollView android:layout_width="fill_parent" ...
分类:移动开发   时间:2014-05-12 23:36:45    阅读次数:386
Android Layout Binder(在线将XML中View find出来,生成java代码的工具)
废话不多说,这是地址:http://android.lineten.net/layout.php。 有图有真相,例如: 你的XML假如是这样:     android:layout_width="fill_parent"     android:layout_height="fill_parent"     android:orientation=...
分类:移动开发   时间:2014-05-09 15:20:54    阅读次数:424
Android学习笔记(九)——更复杂的进度对话框
显示操作进度的对话框 1、使用上一篇创建的同一项目,在activity_main.xml文件中添加一个Button: <Button android:id="@+id/btn_dialog3" android:layout_width="fill_parent" android:layout_height="wrap_cont...
分类:移动开发   时间:2014-05-07 11:30:28    阅读次数:434
981条   上一页 1 ... 96 97 98 99 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!