xml布局内容总结(四)--Android

(1)对于xml编写界面较复杂的情况下,使用include会使得编写和查看更清楚

<LinearLayout

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical"

>

<include android:id="@+id/hi1" layout="@layout/health_info1" />

<include android:id="@+id/hi2" layout="@layout/health_info2" />

<include android:id="@+id/hi3" layout="@layout/health_info3" />

<include android:id="@+id/hi4" layout="@layout/health_info4" />

<include android:id="@+id/hi5" layout="@layout/health_info5" />

</LinearLayout>

这里health_info1到health_info5是5个布局文件,相应于界面中的5个模块,每一个模块单独200行左右,假设在单独的模块中,不论是改动还是查看都比較easy,假设不适用include,整个布局文件就是1000行左右。无论是改动还是查看都比較麻烦,类似于代码中函数的调用。

CheckBox  hiCbPs1;

hiCbPs1=(CheckBox)findViewById(R.id.hi1).findViewById(R.id.hicbps1);

这是代码中的使用方法

(2)自己定义view的使用。在开发产品时,有时候会碰到一些须要自己进行绘制的view增加到界面中

加入到到xml中的使用方法

<com.jxj.view.BigDialView

android:id="@+id/healthstatedial"

android:layout_width="fill_parent"

android:layout_height="200dip"

android:layout_margin="5dip"

android:layout_gravity="center"

android:scaleType="centerInside"

/>

com.jxj.view  是包名   BigDialView是自己定义的类名   com.jxj.view.BigDialView是完整的路径

这里常常easy出错的问题就是xml中找不到该类,原因通常是未定义这个类,还是就是包名或类名写错导致xml找不到

(3)这个是在LoonAndroid框架中看到的。认为挺好用

基本全部的控件都会用到这两条语句

android:layout_width="fill_parent"

android:layout_height="wrap_content"

在LoonAndroid框架中看到了这样的使用方法比較简单,用一条语句替换了

<RelativeLayout

android:id="@+id/top_head"

style="@style/w_full_h_wrap"

android:background="@drawable/head_back"

android:orientation="horizontal" >

等同于

<RelativeLayout

android:id="@+id/top_head"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:background="@drawable/head_back"

android:orientation="horizontal" >

想要使用这样的方法。仅仅需在values文件夹下加入

themes_basic.xml

<?xml version="1.0" encoding="utf-8"?>

<resources xmlns:android="http://schemas.android.com/apk/res/android">

<!-- 全屏幕拉伸 -->

<style name="w_h_full">

<item name="android:layout_width">fill_parent</item>

<item name="android:layout_height">fill_parent</item>

</style>

<!-- 高度和屏幕高度一样 宽度自适应 -->

<style name="w_wrap_h_full">

<item name="android:layout_width">wrap_content</item>

<item name="android:layout_height">fill_parent</item>

</style>

<!-- 宽度和屏幕宽度一样 高度自适应 -->

<style name="w_full_h_wrap">

<item name="android:layout_width">fill_parent</item>

<item name="android:layout_height">wrap_content</item>

</style>

<!-- 固定自身大小 -->

<style name="w_wrap_h_wrap">

<item name="android:layout_width">wrap_content</item>

<item name="android:layout_height">wrap_content</item>

</style>

</resources>

时间: 2024-10-04 01:33:19

xml布局内容总结(四)--Android的相关文章

xml布局内容总结(二)--Android

关于xml中margin和padding的内容,在刚接触xml的时候会有些混淆和模糊,在此进行总结,希望能帮助到有需要的人. 2.xml中margin和padding <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width

xml布局内容总结(三)--Android

关于xml中经经常使用到边框及边框效果,在此进行一下总结. 3.border(边框及边框效果) (1)直角边框线 <LinearLayout android:layout_width="200dp" android:layout_height="30dp" android:layout_margin="10dp" android:orientation="vertical" android:background=&quo

仿酷狗音乐播放器开发日志二十四 选项设置窗体的实现(附328行xml布局源码)

转载请说明原出处,谢谢~~ 花了两天时间把仿酷狗的选项设置窗体做出来了,当然了只是做了外观.现在开学了,写代码的时间减少,所以整个仿酷狗的工程开发速度减慢了.今天把仿酷狗的选项设置窗体的布局代码分享出来,给学习duilib布局的朋友做个demo.现在编写的仿酷狗选项设置窗体和原酷狗的窗体不细看几乎看不出差别,控件的布局位置和原酷狗最多只有几个像素的位置差别. 先来看一下原酷狗的选项设置窗体的其中一个页面: 如果还不太会布局的朋友可以先看我前些日子写的关于duilib布局的博客<duilib各种布

android :点击某个按钮弹出在原有布局中没有(或者存在)内容 :以删除原有布局内容为例

主要涉及了(1)对布局中某个控件的监听 (2)在布局文件中设置可显示,删除的参数 visibility的参数的有三个,在这里我只设置了一个,可见的. android:visibility="visible" 剩下的和他的用法相同. (3)在代码中监听控件后,对visibility的参数重新设置. 效果图:点击按钮后edittext不见了 (1)点击高级按钮前 (2)点击高级按钮后 (1)布局文件 <?xml version="1.0" encoding=&qu

Android中将xml布局文件转化为View树的过程分析(下)-- LayoutInflater源码分析

在Android开发中为了inflate一个布局文件,大体有2种方式,如下所示: // 1. get a instance of LayoutInflater, then do whatever you want LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); // 2. you're in some View class, then jus

Android中measure过程、WRAP_CONTENT详解以及xml布局文件解析流程浅析(上

                                                                                                                                               本文原创, 转载请注明出处:http://blog.csdn.net/qinjuning 在之前一篇博文中<<Android中View绘制流程以及invalidate()等相关方法分析>>,简单的阐述

android XML布局大全

第一类:属性值为true或falseandroid:layout_centerHrizontal  水平居中android:layout_centerVertical   垂直居中android:layout_centerInparent    相对于父元素完全居中android:layout_alignParentBottom 贴紧父元素的下边缘android:layout_alignParentLeft   贴紧父元素的左边缘android:layout_alignParentRight  

Android中measure过程、WRAP_CONTENT详解以及 xml布局文件解析流程浅析

转自:http://www.uml.org.cn/mobiledev/201211221.asp 今天,我着重讲解下如下三个内容: measure过程 WRAP_CONTENT.MATCH_PARENT/FILL_PARENT属性的原理说明 xml布局文件解析成View树的流程分析. 希望对大家能有帮助.- - 分析版本基于Android 2.3 . 1.WRAP_CONTENT.MATCH_PARENT/FILL_PARENT 初入Android殿堂的同学们,对这三个属性一定又爱又恨.爱的是使

[图文]为移植到Android平台上的Cocos2d-x项目添加xml布局文件

转载请标明出处:http://blog.csdn.net/vistatns/article/details/51316462 (将Cocos2d-x项目移植到Android上请前往:http://blog.csdn.net/vistatns/article/details/51316103) 1.添加布局文件main.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:a