这是一个gridview: [test_grid.xml]
<RelativeLayout xmlns:android="http:....."
android:layout_height="match_parent"
android:layout_width="match_parent">
<GridView
android:id="@+id/grid_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:numColumns="6"
android:verticalSpacing="0dp"
android:horizontalSpacing="0dp"
android:stretchMode="columnWidth"
android:gravity="center"
android:layout_marginLeft="20dp"
android:layout_marginTop="15dp"
android:layout_marginRight="5dp"
android:layout_marginBottom="5dp"
>
</GridView>
</RelativeLayout>
和一个imageview: image_item.xml
<RelativeLayout xmlns:android="http:....."
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="45dp"
android:layout_height="45dp"
android:id="@+id/imageLetter"
android:padding="0dp" />
</RelativeLayout>
在GridAdapter.java中
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater)
mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if(convertView==null){
convertView=inflater.inflate(R.layout.item_list,parent,false);
}
ImageView imageView=(ImageView)convertView.findViewById(R.id.imageLetter);
imageView.setImageResource(mThumbIds[position]);
return imageView;
问题是:无法删除图像视图周围的填充, enter image description here 我试过这个:
imageView.setPadding(0,0,0,0);
但没有结果。感谢任何帮助,建议。
答案 0 :(得分:0)
在 ImageView 布局中进行更改。给出宽度和高度wrap_content
而不是 xxdp
<RelativeLayout xmlns:android="http:....."
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageLetter"
android:padding="0dp" />
</RelativeLayout>
我会为你工作。