2

我对 android 中画廊的设定大小有疑问。我想设置画廊的大小(如设备屏幕的一半)我正在使用此代码:

int width = (int) getResources().getDimension(R.dimen.image_height);
int height = (int) getResources().getDimension(R.dimen.image_width);
iv.setLayoutParams(new Gallery.LayoutParams(width, height));
iv.setLayoutParams(new Gallery.LayoutParams(30, 40)); `

和 main.xml:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    <TextView
        android:id="@+id/mySelection"
        android:layout_width="fill_parent"
        android:layout_height="
        android:background="#ffffff"
        android:textSize="20px"
        android:textStyle="bold" />

    <Gallery
        android:id="@+id/myGallery"
        android:layout_width="fill_parent"
        android:layout_height="30dp"
        android:gravity="bottom" 
         android:spacing="
    <ListView
        android:id="@+id/listView1"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:layout_weight="0.46" />
</LinearLayout>` 

此外,在文件中设置深度和高度images.xml不起作用。

4

1 回答 1

0

您的高度不起作用,因为您没有给出值..再次查看您的代码..并且要设置 gridview 的大小,请使用以下代码:

Display display = activity.getWindowManager().getDefaultDisplay();
    int halfDeviceWidth = display.getWidth()/2;
    int halfDeviceHeight = display.getHeight()/2;
iv.setLayoutParams(new Gallery.LayoutParams(halfDeviceWidth, halfDeviceHeight));

使用此代码..

于 2012-10-08T10:39:15.203 回答