1

我正在使用以下内容RelativeLayoutGridView

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativeLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="5dp"
    android:background="@drawable/border">

    <ImageView
        android:id="@+id/icon_service"
        android:layout_width="290dp"
        android:layout_height="268dp"        
        android:layout_alignParentTop="true"
        android:src="@drawable/icon"
        android:layout_centerHorizontal="true">
    </ImageView>

    <TextView
        android:text="My text"
        android:layout_height="80dp"
        android:id="@+id/service"
        android:layout_width="wrap_content"
        android:layout_below="@+id/icon_service"
        android:layout_marginTop="2dp"
        android:layout_centerHorizontal="true"
        android:gravity="top|center"
        android:textSize="24sp"
        android:textColor="#ff0000"
        android:ellipsize="marquee">
    </TextView>
</RelativeLayout>

这给了我这个:

在此处输入图像描述

相反,我想要的是:

在此处输入图像描述

4

2 回答 2

2

您的图像视图位于正确的位置,下方,而不是直接放置 textview.. 放置一个线性布局,其方向为水平,并制作此 LinearLayout、TextView 和 ImageView 的两个孩子......就是这样......

于 2013-09-10T15:05:34.097 回答
1

您只提供一个 ImageView 并期望两个 imageviews 查看您的代码..为实现您想要的结果采用一个线性布局,给它 wightsum = 10 和垂直方向,并在 this.give weight for imageview 7 和线性布局3..然后将第二个线性布局权重和设置为6,并在第二个布局内取一个文本视图和一个图像视图,并将文本视图权重设置为4,图像视图等于2..如果不等于您的预期,请查看结果...自定义权重...喜欢

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightSum="10"
    android:orientation="vertical">
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="7"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="3"
        android:weightSum="6"
        android:orientation="horizontal">
        <TextView
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="4"/>
        <ImageView
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="2"/>
    </LinearLayout>
</LinearLayout>
于 2017-11-28T12:14:33.833 回答