gpt4 book ai didi

java - Android Layout内容显示问题

转载 作者:行者123 更新时间:2023-12-02 07:41:02 27 4
gpt4 key购买 nike

我试图在布局中显示两个文本,以便它们一个接一个地显示,但以下代码将字符串粘贴到彼此的正上方。我应该怎么办。我尝试在两个 TextView 之间交换 fill_parent 和 wrap_content 但它毫无值(value)

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

<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerHorizontal="false"
android:layout_centerVertical="false"
android:text="@string/hello_world"
tools:context=".StartingPoint" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="false"
android:layout_centerVertical="false"
android:text="@string/testing"
tools:context=".StartingPoint" />

最佳答案

您必须将属性below放在第二个TextView中,并在below属性上设置第一个TextView的id

将你的两个 TextView 更改为这两个:

<TextView
android:id="@+id/TextView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerHorizontal="false"
android:layout_centerVertical="false"
android:text="@string/hello_world"
tools:context=".StartingPoint" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/TextView1"
android:layout_centerHorizontal="false"
android:layout_centerVertical="false"
android:text="@string/testing"
tools:context=".StartingPoint" />

但是你需要先阅读 android 开发者的文档,因为那是非常基础的。

希望能帮到你:)

关于java - Android Layout内容显示问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11591554/

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