码迷,mamicode.com
首页 >  
搜索关键字:layout_height    ( 604个结果
5.ScrollView无法填充满屏幕
问题:     android:id="@+id/drawer_layout"     android:layout_width="match_parent"     android:layout_height="match_parent" >             android:layout_width="match_parent"         androi...
分类:其他好文   时间:2014-06-19 09:36:53    阅读次数:199
android 弹出的软键盘遮挡住EditText文本框的解决方案
1.android 弹出的软键盘遮挡住EditText文本框的解决方案:把Activit对应的布局文件filename.xml文件里的控件用比重设置布局。(例如:android:layout_weight="31")并且尽可能把高度设置成自适应的:android:layout_height="wra...
分类:移动开发   时间:2014-06-13 15:46:32    阅读次数:406
View2紧跟view1,并且不被view1挤出屏幕
android:layout_width="match_parent"     android:layout_height="wrap_content"     android:gravity="center_vertical"     android:orientation="horizontal" >             android:layout_width="wrap...
分类:其他好文   时间:2014-06-08 17:58:54    阅读次数:633
android 屏幕适应
1. 屏幕对多分辨率适应的最好方法可能就是用 weight 属性了。线型布局里可以使用 layout_weight 属性来让控件按比例显示。这样不同屏幕分辨率下会有一致的显示效果。这个属性有两种使用方法: 1. 把 layout_width 或 layout_height (取决于你想在长度上还是....
分类:移动开发   时间:2014-06-06 18:11:48    阅读次数:226
Android应用程序中的多个Activity的显示创建和调用
布局文件: <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-06-01 04:04:04    阅读次数:490
android:修改PagerTabStrip中的背景颜色,标题字体的样式、颜色和图标以及指示条的颜色
1.修改PagerTabStrip中的背景颜色我们在布局中直接设置background属性即可: <android.support.v4.view.ViewPager android:id="@+id/pager" android:layout_width="fill_parent" android:layout_height="fill_paren...
分类:移动开发   时间:2014-05-31 23:42:11    阅读次数:624
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
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 ScrollView 充满屏幕
android:fillViewport=trueScrollView下面的组件如果有android:layout_height="fill_parent"或android:layout_height="wrap_content"那么必须将ScrollView的android:fillViewpor...
分类:移动开发   时间:2014-05-16 18:09:45    阅读次数:368
604条   上一页 1 ... 58 59 60 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!