• XML布局技巧 java程序员


       postInvalidate();                            界面刷新

     

    一个list元素可能默认为48px
    android:visibility="invisible">                  设置组件显示visible 不显示invisible 消失gone
    android:background="@null"                       设置组件无背景
    android:layout_gravity="right|center_vertical"   向右并垂直居中
      <Button
        
         android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:drawableTop="@drawable/star"         将图片设置在按钮的上方
        android:text="按钮1"                             
        />
           
     
      <include
                android:id="@+id/vip_include_top"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                layout="@layout/top_1" />                  包含一个layout
     <SlidingDrawer 
    android:id="@+id/sliding" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:content="@+id/allApps" 
    android:handle="@+id/imageViewIcon" a
    ndroid:orientation="vertical"
    >                                                抽屉式设计必须设置content(类容控件)    handle(把手类容控件)
    android:layout_alignParentBottom="true"          总是在父元素的底部
    android:scrollbars="none"                        不要滚动条
    android:gravity:       是对view控件本身来说的,是用来设置view本身的文本应该显示在view的什么位置,默认值是左侧

    android:layout_gravity:是相对于包含改元素的父元素来说的,设置该元素在父元素的什么位置
    <Button android:layout_width="120dip" 
       android:layout_height="wrap_content"
       android:text="切换程序" 
       style="@android:style/ButtonBar"  设置按钮为按钮条风格
       android:id="@+id/btn7"
       android:layout_weight="1" />         
     

    requestWindowFeature(Window.FEATURE_NO_TITLE);   设置无标题
    在application 标签中添加android:theme=”@android:style/Theme.NoTitleBar” 去掉所有Activity界面的标题栏
    修改AndroidManifest.xml
    this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);       设置全屏
    <resources>
     <style name="tab_btn">  
         <item name="android:textAppearance">@style/tab_item_text_style</item>   
         <item name="android:gravity">center_horizontal</item>
         <item name="android:background">@drawable/trans</item>
         <item name="android:layout_width">0.0dip</item>  
         <item name="android:layout_height">wrap_content</item>  
         <item name="android:button">@null</item>  
         <item name="android:layout_weight">1.0</item>   自定义按钮的Style属性
     </style>
    </resources>

     <selector xmlns:android="http://schemas.android.com/apk/res/android">
      <item android:state_enabled="false" android:drawable="@drawable/input_normal" /> 
      <item android:state_pressed="true" android:drawable="@drawable/input_normal" /> 
      <item android:state_focused="true" android:drawable="@drawable/input_over" /> 
      </selector>                                              定义组件得到焦点,点击,激活的状态

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android">   
    <gradient      
    android:startColor="#FFFFFF"      
    android:endColor="#000000"      
    android:angle="270" />  </shape>                             设置Drawable渐变
    setBackgroundResource(R.drawable.bg);                        调用        

       //设置 Gallery样式在BaseAdapter的getView中

    TypedArray typedArray = context.obtainStyledAttributes(R.styleable.Gallery);
    imageView.setBackgroundResource(typedArray.getResourceId(R.styleable.Gallery_android_galleryItemBackground, 0));
    return imageView;
     android:spacing="10dp"  //Gallery间隔
     
    第一类:属性值为true或false
     

    android:layout_centerHrizontal? 水平居中
    android:layout_centerVertical?? 垂直居中
    android:layout_centerInparent???相对于父元素完全居中
    android:layout_alignParentBottom 贴紧父元素的下边缘
    android:layout_alignParentLeft?? 贴紧父元素的左边缘
    android:layout_alignParentRight? 贴紧父元素的右边缘
    android:layout_alignParentTop??? 贴紧父元素的上边缘
    android:layout_alignWithParentIfMissing? 如果对应的兄弟元素找不到的话就以父元素做参照物
    第二类:属性值必须为id的引用名”
    android:layout_below????? 在某元素的下方
    android:layout_above????? 在某元素的的上方
    android:layout_toLeftOf?? 在某元素的左边
    android:layout_toRightOf? 在某元素的右边
    android:layout_alignTop?? 本元素的上边缘和某元素的的上边缘对齐
    android:layout_alignLeft? 本元素的左边缘和某元素的的左边缘对齐
    android:layout_alignBottom 本元素的下边缘和某元素的的下边缘对齐
    android:layout_alignRight? 本元素的右边缘和某元素的的右边缘对齐
    第三类:属性值为具体的像素值,如30dip,40px
    android:layout_marginBottom?????? 离某元素底边缘的距离
    android:layout_marginLeft???????? 离某元素左边缘的距离
    android:layout_marginRight??????? 离某元素右边缘的距离
    android:layout_marginTop????????? 离某元素上边缘的距离
     
    android:scaleType:android:scaleType是控制图片如何resized/moved来匹对ImageView的size。
    ImageView.ScaleType / android:scaleType值的意义区别:
    CENTER /center? 按图片的原来size居中显示,当图片长/宽超过View的长/宽,则截取图片的居中部分显示
    CENTER_CROP / centerCrop? 按比例扩大图片的size居中显示,使得图片长(宽)等于或大于View的长(宽)
    CENTER_INSIDE / centerInside? 将图片的内容完整居中显示,通过按比例缩小或原来的size使得图片长/宽等于或小于View的长/宽
    FIT_CENTER / fitCenter? 把图片按比例扩大/缩小到View的宽度,居中显示
    FIT_END / fitEnd?? 把图片按比例扩大/缩小到View的宽度,显示在View的下部分位置
    FIT_START / fitStart? 把图片按比例扩大/缩小到View的宽度,显示在View的上部分位置
    FIT_XY / fitXY? 把图片不按比例扩大/缩小到View的大小显示MATRIX / matrix 用矩阵来绘制,动态缩小放大图片来显示。
    ** 要注意一点,Drawable文件夹里面的图片命名是不能大写的。
  • 相关阅读:
    [PHP]解决PHP Call to undefined function ldap_connect()
    [Nginx] Nginx配置PHP应用传递PATH_INFO变量
    [PHP]解决PHP Fatal error: Call to undefined function mcrypt_get_iv_size()
    [CentOS] centos下安装最新稳定版nginx
    [CentOS]查看centos的发行版本情况
    [MySQL]创建用户并指定某一数据库权限
    [PHP] 安装memcached扩展
    [http]301和302的区别
    [javascript] 报错SecurityError: Failed to read the 'localStorage' property from 'Window': Access is denied for this document.
    [GO项目]开源免费在线客服系统-真正免费开源-GOFLY0.3.5发布-极简强大Go语言开发WEB网页客服
  • 原文地址:https://www.cnblogs.com/java20130725/p/3215691.html
Copyright © 2020-2023  润新知