2

次のように曜日を表示するために、onCreateView のフラグメントにグリッドビューを設定しました。

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>

フラグメントの onStart メソッドで、次を使用して特定のセルを強調表示しようとしています。

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

残念ながら、getChildAt メソッドは常に null を返します。グリッドビューにクエリを実行すると、グリッドビューは表示されますが、子はありません。グリッドビューは画面にはっきりと表示され、正しい値が入力されています。

よろしくお願いします。

4

1 に答える 1

3

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;
    };
}
于 2013-10-18T13:42:09.970 に答える