gpt4 book ai didi

android - TextView 不可见

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

请看下面的代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Game" >

<TextView
android:id="@+id/numberOfQuestionsLeft"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="20dp"
android:text="TextView" />

<TextView
android:id="@+id/numberOfCorrectAnswers"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/numberOfQuestionsLeft"
android:layout_alignBottom="@+id/numberOfQuestionsLeft"
android:layout_marginLeft="34dp"
android:layout_toRightOf="@+id/numberOfQuestionsLeft"
android:text="TextView" />

<LinearLayout
android:id="@+id/linearOne"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#49494f"
android:layout_below="@+id/numberOfCorrectAnswers"
android:paddingTop="20dp"
>

<TextView
android:id="@+id/hint"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginBottom="30dp"
android:text="Medium Text"
android:textColor="#ffffff" />

</LinearLayout>

</RelativeLayout>

这给出了以下内容

enter image description here

如您所见,本应出现在线性布局内的 hint TextView 不可见。为什么是这样?请

最佳答案

从提示 TextView 中删除 android:layout_marginBottom="30dp" :

    <LinearLayout
android:id="@+id/linearOne"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#49494f"
android:layout_below="@+id/numberOfCorrectAnswers"
android:paddingTop="20dp" >

<TextView
android:id="@+id/hint"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Medium Text"
android:textColor="#ffffff" />

</LinearLayout >

其实你不需要线性布局,只需要这样做:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Game" >

<TextView
android:id="@+id/numberOfQuestionsLeft"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="20dp"
android:text="TextView" />

<TextView
android:id="@+id/numberOfCorrectAnswers"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/numberOfQuestionsLeft"
android:layout_alignBottom="@+id/numberOfQuestionsLeft"
android:layout_marginLeft="34dp"
android:layout_toRightOf="@+id/numberOfQuestionsLeft"
android:text="TextView" />


<TextView
android:id="@+id/hint"
android:background="#49494f"
android:paddingTop="20dp"
android:layout_below="@+id/numberOfCorrectAnswers"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginBottom="30dp"
android:text="Medium Text"
android:textColor="#ffffff" />

</RelativeLayout >

关于android - TextView 不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17543392/

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