我正在尝试在我的 android 应用程序中更改我的 gridview 的字体大小。
这是我制作gridview的代码:
GridView gridview = (GridView)findViewById(R.id.gridView);
ArrayAdapter<String> arrayadapter = new ArrayAdapter<String>(
this,
R.layout.customstyle,
Rows );
gridview.setNumColumns(14);
gridview.setAdapter(arrayadapter);
这是我的自定义样式 .xml 文档中的代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/grid_item_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="8dip" >
</TextView>
</LinearLayout>
当我尝试让它应用我的风格时,该程序当前崩溃,但它在使用标准样式时可以正常工作。所以有人可以帮我修复这个样式,这样我就可以设置字体大小谢谢