gpt4 book ai didi

java - 在 android studio 中完成构建的问题

转载 作者:搜寻专家 更新时间:2023-11-01 09:23:34 25 4
gpt4 key购买 nike

你能帮我弄一下android studio吗。

我是 android studio 的新手。我现在安装了 java 版本 8 和 android studio-> 打开了新项目,但我有一个错误,我每次在 activity_main.xml 中都有“等待构建完成”。我不知道为什么。

如果你能帮助我,我非常感谢。

这是一个代码:

package com.example.janyl.meinersteapp;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}

这是一个loyout

>
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivityy"
tools:showIn="@layout/activity_main_activityy">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

它是一个屏幕[ /image/4wX23.png]

是build.gradle文件

    def var = apply(plugin: 'com.android.application')

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.janyl.meinersteapp"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint- layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

最佳答案

为了显示 Android Studio 预览,应该同步 gradle 或已经成功构建以显示 Android 预览。

它说你应该等待构建完成任务。

如果某些事情暂停或未完成,您可以在 Android Studio 底部管理任务,如下所示:

enter image description here

或者,尝试从 Build -> Rebuild project 重建项目,如果项目中没有问题/问题,之后您应该能够看到预览。

关于java - 在 android studio 中完成构建的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52597227/

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