码迷,mamicode.com
首页 >  
搜索关键字:layout_width    ( 981个结果
画UI时需要注意的问题
1、可点击区域不能设置为: android:layout_width="wrap_content" android:layout_height="wrap_content" 按钮的可点击范围,至少是高宽38dp,再小就监听不到了 2、不要用fill_parent: 布局, 高宽,不要用fill_pa...
分类:其他好文   时间:2014-10-10 20:45:54    阅读次数:176
浮动后父容器高度自适应
当一个容器内元素都浮动后,它将高度将不会随着内部元素高度的增加而增加,所以造成内容元素的显示超出了容器。为了便于查看效果,把刚才实例中的#layout增加一个边框和内边距:#layout { width:400px; border:2px solid #ccc; padding:2px;}文章出处:...
分类:其他好文   时间:2014-10-09 19:09:47    阅读次数:137
【android】让listview的顶部或者底部也显示分割线
xml文件: <ListView android:id="@+id/listview" android:layout_width="match_parent" android:layout_height="match_parent" android:cacheColorHint="#0...
分类:移动开发   时间:2014-09-30 20:40:20    阅读次数:328
王立平--include在Android中的应用
一个布局中包含另一个布局 1.在layout下定义activity_other.xml布局 2.代码中的包含如下:     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="match_par...
分类:移动开发   时间:2014-09-30 11:45:39    阅读次数:184
Android中gifview的使用
1.导入GifView.jar 2.xml           android:id="@+id/gif1"         android:layout_width="fill_parent"         android:layout_height="fill_parent"         android:layout_centerInParent="true"       ...
分类:移动开发   时间:2014-09-29 13:02:10    阅读次数:184
为ListView同时设置点击时的背景和点击松手之后的背景
本例要达到的效果是, (1)点击ListView的item时会有指定的背景, (2)松手之后,刚才点击的item也会有指定的背景 实现(1)很简单:在xml中为ListView设置listSelector即可。 <ListView android:id="@+id/pop_listview_left" android:layout_width="ma...
分类:其他好文   时间:2014-09-26 20:55:18    阅读次数:153
Android L下用XXRadius设置圆角背景图片不能显示
设置控件的background的例子: <Button android:id="@+id/btn1" android:layout_width="100dp" android:layout_height="50dp" android:text="btn1" android:background="@drawable/...
分类:移动开发   时间:2014-09-26 14:45:58    阅读次数:238
Android 浏览网页
1、编写界面<WebViewandroid:id="@+id/webview"android:layout_width="match_parent"android:layout_height="match_parent"/>2、申请权限<uses-permissionandroid:name="android.permission.INTERNET"/>3、MainActivity.javapackagecom.malakana.webview;importand..
分类:移动开发   时间:2014-09-26 01:45:48    阅读次数:431
RelativeLayout相对布局的使用和详解
Relativelayout 就是所谓的相对布局,也就是说组件与组件之间是依靠相对位置来决定排列顺序的。 既然接口组件之间要指定他们的相对位置 ,那么我们就要为他们每一个组件设置一个ID名称,这样才方便我们为他们设置相对位置。 我们来根据一个简单范例来学习这个布局:     android:layout_width="fill_parent"     android:layout_...
分类:其他好文   时间:2014-09-25 16:32:49    阅读次数:207
LinnearLayout布局的用法详解
LinearLaout 标签是 一种接口组件的编排方式 android:orientation="vertical" android;layout_width="fill_parent" android;layout_height="fill_parent" > android:orientation="方式" 这个方式有两种:"vertical"   垂直 方式 ...
分类:其他好文   时间:2014-09-25 14:33:49    阅读次数:740
981条   上一页 1 ... 88 89 90 91 92 ... 99 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!