美文网首页程序员
20170524Android笔记

20170524Android笔记

作者: 中華田園雞 | 来源:发表于2017-05-24 17:29 被阅读0次

一、<ImageView>图片缩放

添加属性:android:scaleType="属性值"

android:scaleType属性值的可选参数:

说明 效果图
matrix 拉伸图片(不按比例)以填充View的宽高
fitXY 根据父元素拉伸填充
fitStart
fitCenter
fitEnd
center
centerCrop
centerInside

二、<merge></merge>标签的作用
merge中文意思是融入顾名思义就是将一个布局融入到另一个布局中
<include layout="xxx/xml">
新建一个inner.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout     
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#00777777"
        android:gravity="center_horizontal|center_vertical">
        <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
             android:text="这里是文字"
         />
</LinerLayout>

新建一个main.xml

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">
    <include  layout="@layout/inner"/>
 </LinearLayout>

现在是 <TextView>节点是

  <LinearLayout>
  ---<LinearLayout>
  -------<TextView>

inner.xml最外层套上<merge></merge>标签后

<merge>
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout     
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#00777777"
            android:gravity="center_horizontal|center_vertical">
            <TextView
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                 android:text="这里是文字"
             />
    </LinerLayout>
</merge>

此时的TextView的节点

  <LinearLayout>
     ----<TextView>

直接就少了inner.xml文件里的<LinearLayout>
由此可以看出两者的区别

总结:

在使用include复用layout时,可能复用的layout有个view group,然后这个view group又被嵌套别的view group里,这样就增加了view的深度,影响运行的速度,而这种嵌套不是必须的。
因此可以使用<merge>标签,它将它里面嵌套的view直接include到其父layout中,而没有再加一层view group,因此减小了深度,提高了速度

相关文章

网友评论

    本文标题:20170524Android笔记

    本文链接:https://www.haomeiwen.com/subject/zbsoxxtx.html