0

我试图在 EditText 框中用不同的(背景)颜色标记不同的行,即第 1 行 - 蓝色,第 2 行 - 黑色等。我通过在背景 ListView 中的适当文本框中填充颜色来实现这一点。我这样做是因为 EditText 没有提供只能设置一行背景颜色的方法(如果您知道,请提供一种方法)。现在,每当用户滚动 EditText 框时,我也会滚动 ListView 相同的量,以便它们一起移动,感觉就像 EditText 框线设置了相应的背景颜色。

我面临的唯一问题是,当 ListView 向下/向上滚动时,显示的新行(在 ListView 中)(显示行下方的那些)没有任何颜色设置。似乎 ListView 没有绘制正在显示的新行(文本框)。这是因为 ListView 在 EditText 的背景中(我使用的是相对布局,下面是 ListView,顶部是 EditText)?即使在滚动时,有什么方法可以使 ListView 填充正确的颜色,以便显示新的行?

谢谢。

编辑:要求的代码:这是 layout.xml 中的条目:

<RelativeLayout
    android:id="@+id/container1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1" 
    >
    <ListView android:id="@+id/bgLv1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:dividerHeight="0dp"
        android:divider="@null"
        />
    <EditText android:id="@+id/et1" android:layout_gravity="left" android:layout_height="match_parent" android:layout_width="match_parent" android:text="" android:gravity="center" android:background="@drawable/textbox_border"></EditText>
</RelativeLayout>

编辑 2:发布 ListAdapter 代码:这里 b 是布尔数组,在检查哪个时,决定了线条的颜色。

import java.util.List;

import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;

public class BackgroundListAdapter extends ArrayAdapter<String>
{
    private boolean b[];
    private Context context;

    BackgroundListAdapter(Context c, int a)
    {
        super(c,a);
        context = c;
    }
    BackgroundListAdapter(Context c, int a, int b)
    {
        super(c,a,b);
        context = c;
    }
    BackgroundListAdapter(Context c, int a, int b, List<String> l)
    {
        super(c,a,b,l);
        context = c;
    }
    BackgroundListAdapter(Context c, int a, int b, String[] s)
    {
        super(c,a,b,s);
        context = c;
    }
    BackgroundListAdapter(Context c, int a, List<String> l)
    {
        super(c,a,l);
        context = c;
    }
    BackgroundListAdapter(Context c, int a, String[] s)
    {
        super(c,a,s);
        context = c;
    }
    BackgroundListAdapter(Context c, boolean[] b)
    {
        super(c,R.layout.listview_background,new String[b.length]);
        context = c;
        this.b = b;
    }

    public View getView(int position, View convertView, ViewGroup parent)
    {
        View rowView = convertView;
        if (rowView == null)
        {
            LayoutInflater inflater = ((Activity)context).getLayoutInflater();
            rowView = inflater.inflate(R.layout.listview_background, null);
            rowView.setTag(new ViewHolder((TextView) rowView.findViewById(R.id.listBackgroundTV)));
        }

        ((ViewHolder)rowView.getTag()).tv.setHeight((position != 0)?((TextBox)((Activity)context).findViewById(R.id.ctb1)).getLineHeight():((TextBox)((Activity)context).findViewById(R.id.ctb1)).getLineHeight() + (int) (context.getResources().getDisplayMetrics().density + 0.5f));
        ((ViewHolder)rowView.getTag()).tv.setBackgroundColor((b[position])?0xff000000:0xffffffff);

        return rowView;
    }
}

class ViewHolder
{
    public TextView tv;

    ViewHolder(TextView tv)
    {
        this.tv = tv;
    }
}

编辑 3: onCreate 方法:

public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    et1 = (EditText)findViewById(R.id.et1);
    et1.setText(inpStr);
    final ListView lv1 = ((ListView)findViewById(R.id.bgLv1));
    final BackgroundListAdapter bla = new BackgroundListAdapter(this,colorLines);
    lv1.setAdapter(bla);
}
4

1 回答 1

0

这就是我为我的桌子绘制矩形的方式

<?xml version="1.0" encoding="utf-8"?>
<shape
  xmlns:android="http://schemas.android.com/apk/res/android"
android:shape= "rectangle"  >
        <solid android:color="#FFFFFF"/>
        <stroke android:width="1dp"  android:color="#000000"/>
</shape>
于 2013-07-02T15:38:12.083 回答