安卓常用参数笔记

作者: 白银之火 | 来源:发表于2019-02-13 14:51 被阅读0次

    好记性不如烂笔头,记录一些常用的参数和效果

    - 取消 listview 等列表滑动到边缘闪现灰白色水波纹动画
    滑动到边缘时会有水波效果
    android:overScrollMode="never"
    
    - 解决 recycleview 嵌套 NestedScrollView 滑动卡顿
    mRecyclerView.setNestedScrollingEnabled(false);
    
    或在 xml 中设置
    android:nestedScrollingEnabled="false"
    
    - ImageView 高度自适应
    android:adjustViewBounds="true"
    
    左边的图片未自适应时,上下会留白边
    - Button 取消阴影
    style="?android:attr/borderlessButtonStyle"
    
    点击波纹效果
    android:foreground="?android:attr/selectableItemBackground"
    
    效果

    波纹点击效果可以加在任意 View 上

    - visibility 隐藏和显示时的动画效果

    在 ViewGroup 父布局加上

    android:animateLayoutChanges="true"
    

    View 的显示隐藏会有一个简单的动画效果


    - getColor 方法过时的写法
    ContextCompat.getColor(this, R.color.white)
    
    - Toolbar 取消内宽
    app:contentInsetEnd="0dp"
    app:contentInsetLeft="0dp"
    app:contentInsetRight="0dp"
    app:contentInsetStart="0dp"
    
    - TextView 行间距
    //设置行间距
    android:lineSpacingExtra="3dp"
    //设置行间距的倍数
    android:lineSpacingMultiplier="1.2
    

    相关文章

      网友评论

        本文标题:安卓常用参数笔记

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