android:gridview如何定义网格大小以始终适合屏幕
这是一个简单的问题,但我无法得到答案。 我希望网格图像根据设备屏幕调整大小。
我将我的 Gridview 定义为
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#111111">
<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:verticalSpacing="10dip"
android:horizontalSpacing="10dp" android:numColumns="auto_fit"
android:stretchMode="columnWidth" android:listSelector="@null"
android:layout_below="@+id/text1view" android:layout_marginTop="10dip"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
并且在我正在做的适配器中:
imageView = new ImageView(mContext);
// imageView.setImageResource(mThumbIds[position]);
imageView.setLayoutParams(new GridView.LayoutParams(150, 150));
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setOnClickListener(new View.OnClickListener() {`
非常感谢您的时间和回答。
This is a simple question but i am not able to get the answer.
I want the grid images to resize depending on the device screen.
I have my Gridview defined as
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#111111">
<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:verticalSpacing="10dip"
android:horizontalSpacing="10dp" android:numColumns="auto_fit"
android:stretchMode="columnWidth" android:listSelector="@null"
android:layout_below="@+id/text1view" android:layout_marginTop="10dip"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
and in the adapter i am doing :
imageView = new ImageView(mContext);
// imageView.setImageResource(mThumbIds[position]);
imageView.setLayoutParams(new GridView.LayoutParams(150, 150));
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setOnClickListener(new View.OnClickListener() {`
thanks a lot for your time and answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
几年后...
为了稍微扩展 fr4n 给出的答案,您可以在整数资源 xml 中定义图像大小值,然后将不同的值放入合格的“values-xxx”资源文件夹中。
例如,values-mdpi 等
,或者如果 android 3.2 或更高版本,
values-sw300dp 等。
(根据内存编码,因此不能保证语法 100% 正确)
A couple of years later...
To expand slightly on the answer given by fr4n, you could define the image size value in an integer resource xml, then put different values in qualified "values-xxx" resource folders.
e.g. values-mdpi etc.
or if android 3.2 or above
values-sw300dp etc.
(coded from memory, so no guarantee the syntax is 100% correct)