status_bar_latest_event.XML这里有关于通知栏的通知条目的修改,直接上原文了,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="65.0sp"
xmlns:android="http://schemas.android.com/apk/res/android">
<com.android.systemui.statusbar.LatestItemView android:id="@id/content" android:background="@*android:drawable/status_bar_item_background" android:paddingRight="6.0sp" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="64.0sp" />
<View android:background="@drawable/divider_horizontal_light_opaque" android:layout_width="fill_parent" android:layout_height="wrap_content" />
</LinearLayout>
1.通知条目高度的修改:上面的65.0sp和64.0sp就是高度
2.通知条目下面一般都有一条白线,
透明方法:
①drawable-mdpi文件夹内 divider_horizontal_light_opaque.9.png换成透明的
⑥上面的 @drawable/divider_horizontal_light_opaque改为#00000000
3.通知栏条目由框架决定,若要想独立于systemUI.apk,将上面的 "@*android:drawable/status_bar_item_background"
改为 "@drawable/item_bg"
再在drawable-mdpi放入一张图片item_bg.png
这个按下背景时候没有效果,我还没有弄,你想弄的话,反编译字母的分页下拉这个代码看一下就够了,…
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="65.0sp"
xmlns:android="http://schemas.android.com/apk/res/android">
<com.android.systemui.statusbar.LatestItemView android:id="@id/content" android:background="@*android:drawable/status_bar_item_background" android:paddingRight="6.0sp" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="64.0sp" />
<View android:background="@drawable/divider_horizontal_light_opaque" android:layout_width="fill_parent" android:layout_height="wrap_content" />
</LinearLayout>
1.通知条目高度的修改:上面的65.0sp和64.0sp就是高度
2.通知条目下面一般都有一条白线,
透明方法:
①drawable-mdpi文件夹内 divider_horizontal_light_opaque.9.png换成透明的
⑥上面的 @drawable/divider_horizontal_light_opaque改为#00000000
3.通知栏条目由框架决定,若要想独立于systemUI.apk,将上面的 "@*android:drawable/status_bar_item_background"
改为 "@drawable/item_bg"
再在drawable-mdpi放入一张图片item_bg.png
这个按下背景时候没有效果,我还没有弄,你想弄的话,反编译字母的分页下拉这个代码看一下就够了,…