0

我有一个由 Android 向导在 Eclipse 中构建的应用程序,用于带有片段的主/详细信息流。它使用Theme.Holo.Light主题作为父方案并包含最新的 support-v4 库。

我需要以ListFragment这样的方式自定义颜色,即激活的项目具有与视图的默认背景相同的背景颜色,并且所有其他项目具有另一种自定义颜色。所以我做了以下。

样式.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>

可绘制/激活的背景

<?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;
}

用于单个项目的布局使用LinearLayoutactivatedBackgroundIndicator背景:

<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(透明度值),随着每个项目的创建而成倍增加。

如何消除这种行为?

4

1 回答 1

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>

这完全解决了这个问题。

于 2013-11-19T14:24:00.633 回答