如何在动态加载的图像上正确设置文本?

时间:2014-11-10 00:51:06

标签: android android-framelayout

我有一个自定义数组适配器,其中每个项目都包含一个imageview上的两个文本视图(SmartImageView是第三方imageview,它从网址呈现远程图像):

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.loopj.android.image.SmartImageView
    android:id="@+id/backgroundImage"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

<RelativeLayout
    android:id="@+id/text"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="10dp"
        android:text="Data Model Title"
        android:textSize="30sp" />

    <TextView
        android:id="@+id/details"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/title"
        android:layout_marginBottom="10dp"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="10dp"
        android:text="Data Model Details"
        android:textSize="15sp" />
</RelativeLayout>
</FrameLayout>

我看到图像的上边距和下边距没有文字:

1)带有文本的RelativeLayout应该遍历图像,因为它是FrameLayout的第二个孩子

2)为什么我的图像上方和下方有一个边距?我说我的imageview的尺寸与父母一致,并没有为它指定任何顶部或底部边距

1 个答案:

答案 0 :(得分:0)

  1. 应该而且确实如此。该文本没有出现其他原因。
  2. 我添加了android:scaleType =“centerCrop”,它完全填满了行。