Tuesday, January 3, 2017

關於android:clipToPadding

文章攢寫時間︰2017/01/04 11:48

本篇參考來源
1. android:clipToPadding属性的分析——以ListView的"别样"padding为例
2. android:clipToPadding和android:clipChildren

本篇適合

1.Android開發者

一、文章開始

不管在使用過去的ListView或現在的RecyclerView,很容易在xml檔裡遇到一個參數
    android:cliptopadding="true"

完整的xml檔如下
<android.support.v7.widget.recyclerview=""
    android:id="@+id/recyclerview"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:padding="16dp"/>
    android:cliptopadding="true"/>

這個值做什麼用的呢? 直接看影片吧!