gpt4 book ai didi

android - TextView 被 ImageView 推离屏幕

转载 作者:行者123 更新时间:2023-11-29 21:34:40 25 4
gpt4 key购买 nike

我在使用 ImageView 和 TextView 时遇到问题。我遇到一个问题,当我将 ImageView 的布局宽度和高度设置为“fill_parent”时,我希望在其下方显示的 TextView 被推离屏幕。

我必须让 ImageView 填充屏幕的其余部分,这就是我使用“fill_parent”作为高度和宽度的原因。我试过只对宽度使用“fill_parent”,对高度使用“wrap_content”,但随后整个图像被调整大小(变小),就好像我对两者都使用“wrap_content”一样。

这是我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_x_high"
android:orientation="vertical" >

<Gallery
android:id="@+id/Gallery01"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</Gallery>

<ImageView
android:id="@+id/ImageView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:paddingBottom="8dp"
android:paddingTop="20dp"
android:layout_below="@+id/Gallery01" >
</ImageView>

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/Textgoeshere"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="15sp"
android:textColor="#CCCCCC"
android:typeface="serif"
android:textAlignment="gravity"
android:layout_below="@+id/ImageView01" />

</RelativeLayout>

最佳答案

您可以将您的 TextView 对齐到父布局的底部,然后将您的 ImageView 放在 Gallery TextView。这样它将填充布局中的其余空间:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_x_high"
android:orientation="vertical" >

<Gallery
android:id="@+id/Gallery01"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</Gallery>

<TextView
android:id="@+id/textView1"
android:layout_alignParentBottom="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="goes here"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="15sp"
android:textColor="#CCCCCC"
android:typeface="serif"
android:textAlignment="gravity" />

<ImageView
android:id="@+id/ImageView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:paddingBottom="8dp"
android:paddingTop="20dp"
android:layout_below="@+id/Gallery01"
android:layout_above="@+id/textView1" >
</ImageView>



</RelativeLayout>

关于android - TextView 被 ImageView 推离屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18673496/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com