ListView项目不会在onCreate中更改它的backgroundColor,但它确实onItemClick

我有两个列表,一个长和一个短列表。 只显示较长的一个,并且长列表中也在短列表中的列表项应获得蓝色backgroundColor。你可以猜到,这是行不通的。ListView项目不会在onCreate中更改它的backgroundColor,但它确实onItemClick

除此之外,我可以更改onItemClick项目的backgroundColor。 (这工作)

@Override 

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_couple_file);

List<String> longList = new ArrayList<String>();

longList.add("A");

longList.add("B");

List<String> shortList = new ArrayList<String>();

longList.add("A");

// display longList

ListView list = (ListView) findViewById(R.id.list);

ArrayAdapter<String> listAdapter = new ArrayAdapter<String>(this,

android.R.layout.simple_list_item_1, longList);

list.setAdapter(listAdapter);

// look for common elements

for (int i = 0; i < longList.size(); i++) {

if (shortList.contains(longList.get(i))) {

View view = listAdapter.getView(i, null, list);

// should change the item view's color, but it doesn't

view.setBackgroundResource(R.color.blue);

}

}

registerClick();

}

private void registerClick() {

list.setOnItemClickListener(new AdapterView.OnItemClickListener() {

@Override

public void onItemClick(AdapterView<?> adapterView, View viewClicked, int position, long id) {

// however, this does change the item view's color

viewClicked.setBackgroundResource(R.color.red);

}

}

我知道,if语句的作品,我都投以一个TextView,并展示了其在举杯文本。

虽然可能有完全的其他选项来做到这一点,但我想知道为什么backgroundColor的“A”项不会改变onCreate而它应该(它也不会崩溃),尽管它工作在onItemClickListener。

编辑: 我皆已setAdapter部分的位置和if语句(如我在原来的代码有它在逻辑上),并且由于Android工作室建议使用setBackgroundResource,但这并没有解决问题。

回答:

亲切移动你的代码::

for (int i = 0; i < longList.size(); i++) 

{

if (shortList.contains(longList.get(i)))

{

View view = listAdapter.getView(i, null, list);

// should change the item view's color, but it doesn't

view.setBackgroundColor(getResources().getColor(R.color.blue));

}

}

后 'registerClicks()':

 registerClick(); 

for (int i = 0; i < longList.size(); i++)

{

if (shortList.contains(longList.get(i)))

{

View view = listAdapter.getView(i, null, list);

// should change the item view's color, but it doesn't

view.setBackgroundColor(getResources().getColor(R.color.blue));

}

}

其实,问题是,你调用之前的背景变化实际列出你的列表视图。所以它没有得到你想改变背景颜色的孩子的意见。

编辑:

使用此代码:

list.post(new Runnable() { 

@Override

public void run() {

for (int i = 0; i < longList.size(); i++) {

if (shortList.contains(longList.get(i))) {

list.getChildAt(i).setBackgroundColor(

getResources().getColor(R.color.blue));

}

}

}

});

为什么我使用“员额()”,它因为没有这一点,我们取它的看法,但不会创建列表尚未。

感谢和快乐编码!

回答:

使用list.getchildat(),指定括号内的索引应该有效。

以上是 ListView项目不会在onCreate中更改它的backgroundColor,但它确实onItemClick 的全部内容, 来源链接: utcz.com/qa/258803.html

回到顶部