gpt4 book ai didi

android - getChildAt 总是返回 null

转载 作者:搜寻专家 更新时间:2023-11-01 08:55:16 26 4
gpt4 key购买 nike

我在 onCreateView 的 fragment 中设置了一个 gridview 来显示星期几,如下所示:

weekGridView = (GridView)view.findViewById(R.id.weekGrid);

// set up days of week grid
dayAdapter = new ArrayAdapter<String>(ShowEventsNavFragment.this.getActivity(), R.layout.event_gridview_header_cell, R.id.cellTextView, days);
headerGrid.setAdapter(dayAdapter);

我使用指定的 R.layout.event_gridview_header_cell 的单元格布局如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
android:id="@+id/cellTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:textStyle="bold"
android:textSize="18sp" />

</RelativeLayout>

在 fragment 的 onStart 方法中,我尝试使用以下方法突出显示特定单元格:

int highlightDay = cal.get(Calendar.DAY_OF_WEEK);
RelativeLayout rl = (RelativeLayout)weekGridView.getChildAt(highlightDay);
rl.setBackgroundColor(0x448FCC85);

不幸的是,getChildAt 方法总是返回 null。如果我查询 gridview,我发现它是可见的,但它没有 child 。 gridview 在屏幕上清晰可见,并填充了正确的值。

预先感谢您的帮助!

最佳答案

您必须覆盖适配器的 getView(...) 方法。尝试这样做:

dayAdapter = new ArrayAdapter<String>(getActivity(), R.layout.event_gridview_header_cell, R.id.cellTextView, days) {
public View getView(int position, View convertView, android.view.ViewGroup parent) {
View result = super.getView(position, convertView, parent);
int highlightDay = cal.get(Calendar.DAY_OF_WEEK)
// if I am right with indexing ...
if(position == highlightDay - 1) {
result.setBackgroundColor(0x448FCC85);
} else {
// set another background ... this is the default background, you have to provide this because the views are reused
}
return result;
};
}

关于android - getChildAt 总是返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19450806/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com