码迷,mamicode.com
首页 >  
搜索关键字:layout_width    ( 981个结果
Android:用ViewPager实现广告栏
现在常见的广告栏效果,自动切换广告,也可手动滑动切换。 我用ViewPager实现的,废话不多说,上代码: 1、布局文件 layout_ad_pager.xml <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width=...
分类:移动开发   时间:2015-01-15 16:03:05    阅读次数:181
android基础一之AutoCompleteTextView和MultiAutoCompleteTextView
//activity_main.xml<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:contex..
分类:移动开发   时间:2015-01-14 18:17:07    阅读次数:234
android基础二之ToggleButton
//activity_main.xml<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:contex..
分类:移动开发   时间:2015-01-14 18:12:58    阅读次数:242
android基础三之CheckBox
//activity_main.xml<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.vincentlin.checkbox.Main..
分类:移动开发   时间:2015-01-14 18:06:40    阅读次数:183
【Android学习笔记】DatePickerDialog和TimePickerDialog日期选择器和时间选择器
(1)布局文件 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height...
分类:移动开发   时间:2015-01-14 15:33:34    阅读次数:316
4种必须知道的Android屏幕自适应解决方案
一、细说layout_weight 目前最为推荐的Android多屏幕自适应解决方案。 该属性的作用是决定控件在其父布局中的显示权重,一般用于线性布局中。其值越小,则对应的layout_width或layout_height的优先级就越高,一般横向布局中,决定的是layout_width的优先级.....
分类:移动开发   时间:2015-01-14 14:13:57    阅读次数:192
【Android学习笔记】自定义AlertDialog对话框
(1)布局文件: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_heigh...
分类:移动开发   时间:2015-01-14 12:46:33    阅读次数:219
Android - 在RelativeLayout中平分两个控件
在RelativeLayout中平分两个控件本文地址:http://blog.csdn.net/caroline_wendyRelativeLayout在平分时,需要使用一个基准,就是在中间放置一个参考,一个在左面,一个在右面;其中左右的宽度设置为android:layout_width=“0dp",根据内容自动填充;如:<RelativeLayout xmlns:android="htt...
分类:移动开发   时间:2015-01-14 08:30:07    阅读次数:228
Android Button点击事件的三种方式
一、在XML中 LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" >     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent">     android:layout_h...
分类:移动开发   时间:2015-01-12 19:18:21    阅读次数:154
第三章 界面UI的基石—UI布局(4)
3.2.5表单布局(TableLayout)TableLayout,即表单布局,以行和列的形式管理控件。每行为一个TableRow对象,也可以为一个View对象。当为View对象时,该对象将横跨该行所有列。同样的,我们也以一个简单的例子来加以说明,看完例子之后相信大家对TableLayout的应用会有一个比较全面的了解。     android:layout_width="fill_p...
分类:其他好文   时间:2015-01-12 10:54:03    阅读次数:211
981条   上一页 1 ... 76 77 78 79 80 ... 99 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!