zoukankan      html  css  js  c++  java
  • Android培训准备资料之UI一些相似控件和控件一些相似属性之间的区别

    这一篇博客主要收集五大布局中的一些相似控件和控件一些相似属性之间的区别

    ImageView ImageButton Button 三者有啥区别?

    (1)Button继承自TextView,ImageView继承自View,ImageButton继承自ImageView

                                                

    (2)Button支持android:text属性,而ImageButton和ImageView不支持,但是ImageView和ImageButton支持android:src属性,而Button不支持

    ImageView src属性与background属性的区别?

    (1)background会根据ImageView组件给定的长宽进行拉伸,而src就存放的是原图的大小,不会进行拉伸。src是图片内容(前景),bg是背景,可以同时使用。

    (2)scaleType只对src起作用;bg可设置透明度

     gravity与layout_gravity的区别?

    (1)gravity控制的是View里边控件的位置,比如说一个RelativeLayout包含中一个Button,设置gravity属性即可控制Button中Text的位置。

    (2)layout_gravity控制的是View本事相对于直接父类的相对位置,比如说一个RelativeLayout包含着一个Button,设置layout_gravity属性控制的是它本身处于RelativeLayout的左边,右         边,还是上边,还是下边

     margin和padding的区别?

    (1)Padding 为内边框,指该控件内部内容,如文本/图片距离该控件的边距

    (2)Margin 为外边框,指该控件距离边父控件的边距

     Visibility属性VISIBLE,INVISIBLE.GONE的区别?

    (1)VISIBLE:设置控件可见,

    (2)INVISIBLE :设置控件不可见,View仍会占用在xml文件中所分配的布局空间

    (3)GONE:设置控件不可见,View不会占用xml文件中所分配的布局控件,后边的控件顶上

     fill_parent和match_parent的区别?

    (1)从Android2.2开始fill_parent改名为match_parent,建议使用match_parent,因为估计现在也没谁用Android2.2以下的Android手机了吧

  • 相关阅读:
    erwin逆向工程,logical模型列名修改为中文
    [Leetcode] Two pointer-- 76. Minimum Window Substring
    [Leetcode] Binary search tree -- 173. Binary Search Tree Iterator
    [Leetcode] 684. Redundant Connection
    [Leetcode] Binary tree--653. Two Sum IV
    [Leetcode] Binary tree -- 617. Merge Two Binary Trees
    [Leetcode] Binary tree-- 563. Binary Tree Tilt
    [Leetcode] Binary tree-- 572. Subtree of Another Tree
    [Leetcode] Binary tree-- 437. Path Sum III
    [Leetcode] Binary tree-- 113. Path Sum II
  • 原文地址:https://www.cnblogs.com/bdsdkrb/p/5944137.html
Copyright © 2011-2022 走看看