ListView - 项目 - ImageView超出项目布局

时间:2015-11-15 13:10:10

标签: android listview imageview listitem

我有一个列表项,我填写下面的XML布局。 Android studio中的布局设计正是我想要在我的应用程序中使用的,但是当我执行我的应用程序并填充项目中的图像时,图像变得超出边界。

android studio中的布局快照:

Layout snapshot in android studio

应用中的布局快照:

Snapshot within the app

列表视图XML如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >

<TextView
    android:id="@+id/txtMeGuess"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="1111"
    android:gravity="center_horizontal"
    android:textSize="24sp"
    android:layout_centerVertical="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal"
    android:layout_toRightOf="@+id/txtMeGuess"
    android:layout_toEndOf="@+id/txtMeGuess"
    android:layout_alignTop="@+id/txtMeGuess"
    android:paddingLeft="15dp"
    android:layout_alignBottom="@+id/txtMeGuess">

    <FrameLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent">
        <ImageView
            android:id="@+id/imgEval1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/v1"
            android:scaleType="fitXY"
            android:adjustViewBounds="true"
            />
    </FrameLayout>

    <FrameLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent">
        <ImageView
            android:id="@+id/imgEval2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/m1"
            android:scaleType="fitEnd"
            android:adjustViewBounds="true"
            />
    </FrameLayout>
</LinearLayout>

</RelativeLayout>

请你的帮助。

0 个答案:

没有答案