我有一个由Android向导在Eclipse中构建的应用程序,用于包含片段的Master / Detail流程。它使用Theme.Holo.Light
主题作为父方案,并包含最新的support-v4库。
我需要自定义ListFragment
的颜色,使激活的项目具有与默认背景视图相同的背景颜色,并且所有其他项目具有另一种自定义颜色。所以我做了以下几点。
styles.xml :
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:activatedBackgroundIndicator">@drawable/activated_background</item>
</style>
抽拉/ activated_background :
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_activated="true" android:drawable="@color/white" />
<item android:drawable="@color/someothercolor" />
</selector>
color.xml 包含(除其他外):
<color name="background_holo_light">#f3f3f3</color>
<color name="background_holo_light2">#e8e8e8</color>
<color name="white">#FFFFFF</color>
问题
显然应用了指定的颜色,但看起来它在列表中从上到下的项目变得越来越密集。例如,第一项是白雪公主,但第7项具有类似于holo_light_background
的浅灰色背景(与列表右侧显示的详细信息面板相比,这显然是显而易见的)。如果我使用holo_light_background
颜色,则这种不一致性变得更加明显,因为最后的项目具有深灰色背景。
简而言之,列表背景演示了一个渐变,这在我的代码中未指定。
在列表适配器代码中,只有:
public View getView(int position, View convertView, ViewGroup parent)
{
View view = super.getView(position, convertView, parent);
TextView tv = (TextView)view.findViewById(android.R.id.text1);
// get item by position...
tv.setText(item.title);
return view;
}
单个项目使用的布局使用带有LinearLayout
背景的activatedBackgroundIndicator
:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="?android:attr/listPreferredItemPaddingLeft"
android:paddingRight="?android:attr/listPreferredItemPaddingRight"
android:background="?android:attr/activatedBackgroundIndicator"
android:minHeight="?android:attr/listPreferredItemHeightLarge"
>
... child controls are omitted
onViewCreated 也很简单:
@Override
public void onViewCreated(View view, Bundle savedInstanceState)
{
super.onViewCreated(view, savedInstanceState);
setActivateOnItemClick(true);
setActivatedPosition(mActivatedPosition);
}
问题
渐变来自哪里?我需要在我的主题中覆盖一个隐式样式属性,或者列表中的项目有一些秘密alpha
(透明度值),它会随着每个项目的创建而相乘。
如何消除这种行为?
答案 0 :(得分:0)
我设法解决了这个问题。该解决方案包括两个步骤。
首先,我将颜色(应该是激活项目的颜色)应用于整个ListView
作为背景颜色:
@Override
public void onViewCreated(View view, Bundle savedInstanceState)
{
super.onViewCreated(view, savedInstanceState);
getListView().setBackgroundColor(getResources().getColor(R.color.background_holo_light));
}
其次,我更改了 activated_background 选择器,以便为激活的项目使用透明色。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_activated="true" android:drawable="@android:color/transparent" />
<item android:drawable="@color/someothercolor" />
</selector>
现在它看起来像预期的那样。唯一的缺点是项目下的可用空间显示为与激活项目相同的颜色。这不好,这就是我想以其他方式解决问题的原因。
经过一些进一步的调查和测试后,我现在可以确认效果确实是对所有ListView
项目的平滑应用渐变。而且,它似乎也影响了所有其他观点的背景。这与Theme.Holo.Light
主题有某种关系。我通过以下方式更改了应用程序样式:
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowBackground">@color/white</item>
</style>
这完全解决了这个问题。