我有一个包含28行和17列的GridView
<GridView
android:id="@+id/gridMap"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_marginTop="80dp"
android:numColumns="17"
android:rowCount="28">
</GridView>
我想访问特定单元格(例如第5行第7列)以对其进行着色。我试过了
View view = gridMap.getChildAt(5);
但它返回null。
如果有更好的方法,我不会修复GridView-Control。