3

我有一个带有列表视图的应用程序。列表视图工作正常。当我希望列表以标记的某些行开头时,问题就开始了。如果我按下它,我可以标记一行。但是,似乎没有找到在初始化时标记任何行的方法。

这是我的代码:

listViewOfBluetooth = getListView();
setInitialEnabledDevices();
  listViewOfBluetooth.setOnItemClickListener(new OnItemClickListener() {

  public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
      String chosenBluetoothDevice = (String) ((TextView) view).getText();

      BluetoothEnableOrDisable(view, chosenBluetoothDevice);
      Toast.makeText(getApplicationContext(), chosenBluetoothDevice, Toast.LENGTH_SHORT).show();
      editor.putString("bluetooth_name_from_list1", chosenBluetoothDevice);
      editor.putBoolean("have_the_cars_bluetooth", true);
      editor.commit();
      Intent intent = new Intent(List.this, ParkOGuardActivity.class);
      startActivity(intent);
      }
  });
}

public static void setInitialEnabledDevices(){
    int length = listViewOfBluetooth.getChildCount();
    View view = null;
    String first = prefs.getString("bluetooth_name_from_list0", "");
    String second = prefs.getString("bluetooth_name_from_list1", "");
    String third = prefs.getString("bluetooth_name_from_list2", "");
    for(int i = 0; i < length; i++){
        view = listViewOfBluetooth.getChildAt(i);
        if(view.equals(first) || view.equals(second) || view.equals(third)) {
            view.setBackgroundColor(Color.GRAY);
        }
    }       
}

我该如何解决?

谢谢!

4

2 回答 2

4

您可以通过使用自定义适配器来实现这一点。这是解决方法。

  • 初始化您的自定义适配器
  • 为标记的设备名称添加一些标志。
  • 覆盖getView()& 检查标志。并相应地设置列表项的背景。

如果您不明白或面临任何复杂问题,请回复。

更新:

这是一个示例适配器。我没有编译代码。所以可能会有一些错误。

import java.util.ArrayList;

import android.content.Context;
import android.graphics.Color;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;

public class TestAdapter extends BaseAdapter
{
    ArrayList<String> deviceNames;
    ArrayList<Boolean> selected;
    Context context;

    public TestAdapter(Context context)
    {
        this.context = context;
        deviceNames = new ArrayList<String>();
        selected = new ArrayList<Boolean>();
    }

    public void addDeviceToList(String deviceName, boolean isSelected)
    {
        deviceNames.add(deviceName);
        selected.add(isSelected);
        notifyDataSetChanged();
    }

    public int getCount()
    {
        return deviceNames.size();
    }

    public Object getItem(int position)
    {
        return deviceNames.get(position);
    }

    public long getItemId(int position)
    {
        return position;
    }

    public View getView(int position, View convertView, ViewGroup parent)
    {
        TextView tv = new TextView(context);
        tv.setText(deviceNames.get(position));
        if(selected.get(position) == true)
        {
            tv.setBackgroundColor(Color.parseColor("#ff0000"));
        }
        return tv;
    }
}

现在创建适配器对象并将适配器设置为 listView。并通过调用addDeviceToList()方法添加单个项目。

于 2012-05-31T06:55:39.830 回答
0

这似乎很讨厌,但我认为你想在加载它之前修改 listview 中的视图

问题是,只要列表不向用户显示,您的列表就不会有子级。所以在向用户显示之前您可能不会修改视图

但是,如果您真的需要在如此低的级别上与视图进行通信,您可以尝试将滚动侦听器附加到您的列表中:

@Override
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
    for (int i = 0; i < visibleItemCount; i++) {
        View child = getChildAt(i);
        Now edit this view 

    }
}
于 2012-05-31T07:04:19.343 回答