gpt4 book ai didi

java - android 背景颜色 xml 标签在 android studio 中不起作用

转载 作者:行者123 更新时间:2023-12-02 01:03:32 24 4
gpt4 key购买 nike

此代码来自 youtube 上的教程 https://youtu.be/rs10f5MsKEQ @ 4:48在视频中,只要她输入颜色标签,她就会在预览中看到一个正方形,但我没有,我想知道是否有人知道为什么,我将我的 android studio api 级别设置为与视频级别 15 中相同

  <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:background="@drawable/bg">

<TextView
android:id="@+id/scoreLabel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Score : 0"
android:textSize="18sp"
android:textStyle="bold"
android:paddingVertical="14dp"
android:layout_marginBottom="20dp"
android:gravity="center"
android:background="@android:color/white"/>

<FrameLayout
android:layout_width="260dp"
android:layout_height="match_parent"
android:background="@android:color/white"
android:layout_gravity="center_horizontal">

</FrameLayout>

</
LinearLayout>

见下图:

see image

最佳答案

尝试这样,LinearLayouts默认方向是水平的,你需要将方向定义为垂直。 android:orientation="vertical"

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical"
android:background="@drawable/bg">

<TextView
android:id="@+id/scoreLabel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Score : 0"
android:textSize="18sp"
android:textStyle="bold"
android:paddingVertical="14dp"
android:layout_marginBottom="20dp"
android:gravity="center"
android:background="@android:color/white"/>

<FrameLayout
android:layout_width="260dp"
android:layout_height="match_parent"
android:background="@android:color/white"
android:layout_gravity="center_horizontal">

</FrameLayout>

</
LinearLayout>

关于java - android 背景颜色 xml 标签在 android studio 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60340328/

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