码迷,mamicode.com
首页 >  
搜索关键字:match_parent    ( 614个结果
android屏幕适配详解
官方地址:http://developer.android.com/guide/practices/screens_support.html一、关于布局适配建议1、不要使用绝对布局2、尽量使用match_parent 而不是fill_parent 。3、能够使用权重的地方尽量使用权重(android...
分类:移动开发   时间:2014-07-03 11:28:23    阅读次数:321
android Title滑块动画实现(适合新闻客户端多种栏目的展示)
先上效果图,选择不同的模块,滑动会通过动画形式滑过去,这种适合新闻客户端多种栏目的展示: 这么写Layout: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="...
分类:移动开发   时间:2014-07-01 15:43:33    阅读次数:198
android如何写一个自定义的dialog可以在Title的位置弹出来
先上效果图: Title的Layout为: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" ...
分类:移动开发   时间:2014-07-01 11:24:30    阅读次数:289
android如何写一个自定义的dialog可以在Title的位置弹出来
先上效果图: Title的Layout为: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" ...
分类:移动开发   时间:2014-06-30 18:44:18    阅读次数:269
Android常用布局类整理(一)
Android常用布局类整理  最近又回头做了一下android的项目,发觉越来越不从心,很多东西都忘了,简单的页面布局也很多写不出来,首先还是先整理一下一些会混淆的概念先 layout_width/layout_height的两种不同的方式 ① wrap_content能包裹其中的内容即可     ② fill_parent/match_parent 填满父视图的空间   Lin...
分类:移动开发   时间:2014-06-26 07:44:46    阅读次数:337
如何实现底部工具栏的位置在屏幕底部
一个垂直方向的LinearLayout,包含两个View。下面一个View(工具栏)固定在屏幕底部,上面的View占据剩余的屏幕空间。<LinearLayoutandroid:orientation="vertical"android:id="@+id/vertical_layout"android:layout_width="match_parent"android:layout_height="match_paren..
分类:其他好文   时间:2014-06-24 16:57:06    阅读次数:199
赵雅智_Android案例_刮刮乐
实现效果 主要代码 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:lay...
分类:移动开发   时间:2014-06-22 15:08:24    阅读次数:314
android基础之LinearLayout布局
LinearLayout布局:<?xmlversion="1.0"encoding="utf-8"?><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"androi..
分类:移动开发   时间:2014-06-21 19:17:45    阅读次数:239
蜗牛—Android基础之按钮监听器
XML文件里有一个textView 和 一个按钮。 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" andro...
分类:移动开发   时间:2014-06-18 11:35:25    阅读次数:219
尽量理解xml 中LayoutParams的wrap_content, match_parent, 和具体值
概述:本文试图分析理解view 的measure 的过程,在分析过程中重点分析了LayoutParams 中MATCH_PARENT和MATCH_PARENT 的对应关系;onMeasure 默认值的计算过程;解释了onMeasure 接口中的注释中的问题,并提出一个问题:ViewRootImpl 是怎么创建的? 留作下篇引子。最后,讨论如何重写onMeasure()方法。 LayoutPara...
分类:其他好文   时间:2014-06-15 09:58:12    阅读次数:440
614条   上一页 1 ... 58 59 60 61 62 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!