全域性設定分割線,整個應用中有分割線的地方統一設定
阿新 • • 發佈:2019-01-03
通過尚矽谷視訊學習,在此感謝尚矽谷的全體老師以及尚矽谷平臺
第一步:首先建立顯示的分割線樣式
在drawable資料夾下,建立自己喜歡的風格的分割線檔案listdivider_bg.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <gradient android:centerColor="#ff00ff00" android:endColor="#ff0000ff" android:startColor="#ffff0000" android:type="linear"/> <size android:height="2dp"/> </shape>
第二步:style.xml中引用
在設定風格的資原始檔style.xml中,在整個APP的主題風格中引用上面建立的分割線檔案
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> <item name="android:listDivider">@drawable/listdivider_bg</item> </style>
第三步:在AndroidManifest.xml中引用APPTheme
在AndroidManifest.xml中application中風格設定的位置引用AppTheme風格
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme">
效果演示: