经过大量搜索后,我能够在Android中找到我的问题的解决方案
我可以在网格视图中看到网格线....因为它看起来很简单,但我仍然无法解决
问题确实提出了一些有用的建议,可以在
上显示网格线或边框gridview的.....
按照这个问题建议的答案,但不知道如何创建gridview的子类并覆盖其方法,.. ?? 建议解决方案
答案 0 :(得分:4)
如果您需要更简单的解决方案,可以在为每个网格项绘制的自定义视图中添加要绘制的边框。
示例代码:
public class ExampleAdapter extends BaseAdapter {
private Activity activity;
private LayoutInflater inflater;
public ExampleAdapter(Activity activity)
{
this.activity = activity;
this.inflater = activity.getLayoutInflater();
}
@Override
public View getView(int pos, View convertView, ViewgGroup parent) {
ViewHolder holder = null;
if(converView == null) {
convertView = inflater.inflate(R.layout.view_example);
holder = new ViewHolder();
//Set holder ids here
holder.title = convertView.findViewById(R.id.title)
}
//Populate your holder here with data here.
holder.title.setText("My Awesome Title!");
convertView.setTag(holder);
return convertView;
}
}
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="@dimen/grid_item_width"
android:layout_height="@dimen/grid_item_height"
android:background="@color/grid_border"
android:padding="1dip" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white" >
<TextView android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</FrameLayout>
</FrameLayout>