gpt4 book ai didi

Android Studio 预览不显示布局

转载 作者:太空宇宙 更新时间:2023-11-03 12:14:06 25 4
gpt4 key购买 nike

刚开始学习android studio。我遇到了一个问题:

enter image description here

布局在我添加后不会出现在预览中。但是,如果我更改主题或在模拟器中运行应用程序,它们确实会出现但会重叠。

最佳答案

对于 API 27:

添加如下依赖:如果您使用的是 targetSdkVersion 27,在您的应用级 gradle 文件中 build.gradle(Module: app)

实现 'com.android.support:appcompat-v7:27.1.1'

对于 API 28:

如果您使用的是 targetSdkVersion 28,

第 1 步:确保您具有以下依赖项:

实现 'com.android.support:appcompat-v7:28.0.0-rc02'

更新:有关最新的 appcompat-v7 库 repo 版本,请点击此链接

https://mvnrepository.com/artifact/com.android.support/appcompat-v7?repo=google

第 2 步:

转到 Values > styles.xml 并修改样式如下,

<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">

或您喜欢的任何其他基本主题。

这是一个示例约束布局,

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


<EditText
android:id="@+id/enter_age"
android:layout_width="200dp"
android:layout_height="100dp"
android:ems="10"
android:hint="enter age"
android:inputType="number"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@+id/button1"
app:layout_constraintVertical_chainStyle="packed" />


<Button
android:id="@+id/button1"
android:layout_width="200dp"
android:layout_height="110dp"
android:onClick="butGetAge"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/enter_age"
app:layout_constraintBottom_toBottomOf="parent"/>

</android.support.constraint.ConstraintLayout>

关于Android Studio 预览不显示布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51307987/

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