【AndroidSupport】LinearLayoutCompat

#LinearLayout & LinearLayoutCompatandroid

LinearLayoutCompat 所在位置 android.support.v7.widget.LinearLayoutCompatapp

##主要特性:ide

  1. 支持分割線

##注意 2.3 中使用xml定義drawable的時候有bug,因此在2.3 下最好仍是使用圖片做爲分隔符code

##使用xml

定義分割線 /drawable/linearlayout_compat_divider.xml圖片

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#000000" />
    <size android:width="5dp" />
</shape>

定義layoututf-8

<android.support.v7.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    app:divider="@drawable/linearlayout_compat_divider"
    app:dividerPadding="10dp"
    app:showDividers="middle"
    tools:context="dev.xesam.android.support.v7.widget.LinearLayoutCompatDemo">

    <TextView
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1.0"
        android:background="#ff0000"
        android:gravity="center"
        android:text="@string/hello_blank_fragment" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1.0"
        android:background="#00ff00"
        android:gravity="center"
        android:text="@string/hello_blank_fragment" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1.0"
        android:background="#0000ff"
        android:gravity="center"
        android:text="@string/hello_blank_fragment" />

</android.support.v7.widget.LinearLayoutCompat>

效果get

輸入圖片說明

###Android分享 Q羣:315658668string

相關文章
相關標籤/搜索