(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>
(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>
在android中xml文件常用于定义布局和资源 安卓xml布局
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
android xml布局不显示组件 安卓xml布局属性
关于Android Layout里使用的一些组件属性。(1)layout_width与layout_height 用于指定当前View的宽度与高度,这是不同布局管理器都包含的属性,可以指定固定值,也可以取match_parent与wrap_parent。前者match_parent用于表示当前控件的大小与父布局大小相同,也就是由父布局
android xml布局不显示组件 android android studio java xml -
安卓 xml布局 和 java对应
xml 布局文件目录,下面两种定位文件夹结果一致,都是同一份文件。xml 布局页面的三种模式 Code、Split、Design
安卓 xml布局 和 java对应 android 面试 学习 Android