我想将 mvxbindable 列表视图的突出显示颜色从标准橙色自定义为动态设置的颜色。我认为这很容易但是我错了:)
我发现我应该使用 StateListDrawable 在适配器中设置列表项的背景可绘制对象。我通过以下方式执行此操作(绿色用于测试,_backgroundGradient 在构造函数中创建);
public override View GetView(int position, View convertView, ViewGroup parent)
{
var view =base.GetView(position, convertView, parent);
StateListDrawable sld = new StateListDrawable();
sld.AddState(new int[] { Android.Resource.Attribute.StateFocused }, new ColorDrawable(Color.Green));
sld.AddState(new int[] { Android.Resource.Attribute.StatePressed }, new ColorDrawable(Color.Green));
sld.AddState(new int[] {}, _backgroundGradient);
view.Focusable = true;
if (view != null)
{
view.SetBackgroundDrawable(sld);
}
return view;
}
但是,当单击列表项时,没有显示颜色。以下来自我的xml:
<listitem>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res/dk.appsfabrikken.cmsapp"
android:id="@+id/tableViewItem"
android:layout_width="fill_parent"
android:layout_height="90dp"
android:paddingBottom="1dp"
local:MvxBind="{'Click':{'Path':'ShowCellDetails'}}">
<CmsApp.Droid.Controls.UmbracoImageView
android:id="@+id/viewImagePreview"
android:layout_width="90dp"
android:layout_height="90dp"
android:scaleType="centerCrop"
android:padding="5dp"
local:MvxBind="{'ImageData':{'Path':'ImageIconData'},'HideImage':{'Path':'Hidden'}}" />
<TextView
android:layout_gravity="center_vertical"
android:id="@+id/title"
android:textStyle="bold"
android:textColor="@color/table_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
local:MvxBind="{'Text':{'Path':'Title'}}" />
</LinearLayout>
我一定遗漏了一些东西 - 非常感谢任何帮助。