我需要使用java代码声明这个gridView programaticalle:
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:columnWidth="90dp"
android:numColumns="auto_fit"
android:verticalSpacing="10dp"
android:horizontalSpacing="10dp"
android:stretchMode="columnWidth"
android:gravity="center"
/>
我该怎么办?我正在搜索代码示例和检查文档,但我找不到方法:S
由于
答案 0 :(得分:5)
你检查过文件吗?一切都在gridview documentation。例如,相当于android:numColumns
的代码为setNumColumns(int)
。
对于像id这样的东西,你需要回到查看文档。宽度和高度将使用LayoutParams设置。