我在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
文件中设置深度和高度无效。
答案 0 :(得分:0)
你的高度不起作用因为你没有给出价值..再次看到你的代码..并且对于gridview的设置大小使用此代码:
Display display = activity.getWindowManager().getDefaultDisplay();
int halfDeviceWidth = display.getWidth()/2;
int halfDeviceHeight = display.getHeight()/2;
iv.setLayoutParams(new Gallery.LayoutParams(halfDeviceWidth, halfDeviceHeight));
使用此代码..