图像位于嵌套LinearLayout内的ImageView中心

时间:2014-12-09 14:14:18

标签: android xml

我正在尝试将图像置于名为 divider1 divider2 divider3 的图像视图的中心。但我得到的只是: -

http://i.imgur.com/fiBglY5.jpg

正如您可以在得分评论之间看到的那样,图片向上移动了一点点。图像为5x5像素的“点”。

我的XML文件: -

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="#d3d3d3"
    android:padding="10dp" >
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:background="@drawable/rounded">

        <TextView
            android:id="@+id/list_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:textColor="#ffffff" 
            android:padding="2dp"/>
        <LinearLayout 
            android:id="@+id/ll"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:padding="2dp">
            <TextView
            android:id="@+id/list_author"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:textColor="#ffffff"
            android:padding="2dp" />
            <ImageView 
                android:id="@+id/divider1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/divider"
                android:scaleType="centerInside"
                android:padding="2dp"/>
            <TextView
            android:id="@+id/list_domain"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:textColor="#ffffff"
            android:padding="2dp" />
            <ImageView 
                android:id="@+id/divider2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/divider"
                android:scaleType="centerInside"
                android:padding="2dp"/>
            <TextView
            android:id="@+id/list_time"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:textColor="#ffffff" 
            android:padding="2dp"/>
            </LinearLayout>
            <ImageView 
                android:id="@+id/list_image"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                />
            <LinearLayout 
                android:id="@+id/ll2"
               android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:padding="2dp" >
                <TextView
            android:id="@+id/list_score"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:textColor="#ffffff"
            android:padding="2dp" />
            <ImageView 
                android:id="@+id/divider3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/divider"
                android:scaleType="centerInside"
                android:padding="2dp"/>
            <TextView
            android:id="@+id/list_comments"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:textColor="#ffffff"
            android:padding="2dp" />
            </LinearLayout>
    </LinearLayout>

</LinearLayout>

任何想法有什么不对?

1 个答案:

答案 0 :(得分:1)

图片视图的换行取决于它的内容

android:layout_width="wrap_content"

设置图像视图高度以匹配容器。然后你把图像放在里面:

<ImageView 
    android:id="@+id/divider3"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:scaleType="center"
    android:src="@drawable/divider"
    android:padding="2dp"/>

在imageView中设置它们。