ImageView的大小

时间:2011-05-30 06:39:25

标签: imageview

任何人都可以帮助我吗? 为什么ImageView的大小不同? 您可以在下面找到的代码。

<?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:id="@+id/layout"
    android:orientation="vertical">
    <FrameLayout
        android:id="@+id/preview"
        android:layout_weight="1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <SurfaceView
            android:id="@+id/surface_camera"
            android:layout_height="fill_parent"
            android:layout_width="fill_parent" />
    </FrameLayout>
    <TableLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <TableRow
            android:layout_width="fill_parent"
            android:minHeight="10dip">
            <ImageView
                android:layout_width="fill_parent"
                android:layout_weight="1"
                android:id="@+id/buttonClick"
                android:text="Click"
                android:maxHeight="10dip"
                android:layout_gravity="center"
                android:src="@drawable/folder" />
            <ImageView
                android:layout_width="fill_parent"
                android:layout_weight="1"
                android:id="@+id/buttonClick"
                android:text="Back"
                android:maxHeight="10dip"
                android:src="@drawable/back" />
            <ImageView
                android:layout_weight="1"
                android:layout_width="fill_parent"
                android:id="@+id/buttonClick"
                android:text="Folder"
                android:maxHeight="10dip"
                android:src="@drawable/camera_alt" />
        </TableRow>
    </TableLayout>
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

我尝试使用android:src="@android:drawable/ic_menu_delete"进行布局,并且所有视图在模拟器中具有相同的高度和宽度,

如果我使用2 ic_menu_delete和第三个例如@android:drawable / arrow_down_float它们有不同的大小, 所以这意味着它是你的drawable有不同的大小(他们没有达到maxHeight =“10dip”)