gpt4 book ai didi

Android Studio 3.1.3,设计 View 总是空的

转载 作者:IT老高 更新时间:2023-10-28 23:04:05 26 4
gpt4 key购买 nike

我是 android 开发新手,我的 Android Studio 3.1.3 演示项目或我创建的任何项目都有这个问题。

尽管我可以在我的设计 View (ConstraintLayout) 上拖放不同的控件,但设计 View 上没有显示任何内容,但它会显示一小段时间然后消失。

我可以看到我在 activity_main.xml 文本选项卡、组件树甚至在运行模式中拖放的所有元素,但在设计选项卡中看不到,在设计 View 中没有显示任何内容,并且它始终是空白的,甚至没有显示 hello world在上面。

我尝试过使缓存重新启动无效、重新启动我的电脑、更改放大和缩小、推断约束,但没有成功。控件

除非我在设计 View 中看到东西,否则我无法做太多事情。

空设计 View :

Empty Design View

运行模态视图

Run mode view

activity_main.xml

<?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"
tools:context=".MainActivity">

<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />

<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:text="Button" />

<android.support.constraint.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_begin="20dp" />

<CheckBox
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox"
tools:layout_editor_absoluteX="154dp"
tools:layout_editor_absoluteY="181dp" />

</android.support.constraint.ConstraintLayout>

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.libra.myapplication">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

build.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.libra.myapplication"
minSdkVersion 15
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-alpha3'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
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'
}

最佳答案

好的,我的问题解决了!

The following classes could not be instantiated: - android.support.v7.widget.Toolbar

我从这里更改了 res/values/styles.xml 文件:

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

到这里:

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

这样就解决了问题

关于Android Studio 3.1.3,设计 View 总是空的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50929640/

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