在构建应用程序时,会出现我放入的视图,但是在编辑器中却没有出现,有时当我创建ImageView时,我粘贴到drawables中的某些图像会导致渲染问题。我最近更新了我的android studio,现在到处都是bug。下面的图像是一个新项目,我只添加了图像视图并将其转换为相对布局,因为约束布局给了我很多错误。感谢您回答我的问题。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
android:visibility="visible"
tools:context=".MainActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Hello World!"
android:textAppearance="@style/TextAppearance.AppCompat"
android:visibility="visible" />
<ImageView
android:id="@+id/imageView"
android:layout_width="30dp"
android:layout_height="30dp" />
</RelativeLayout>
P.S。
图像视图的src或compatsrc内容,我删除了它,因为它在构建以进行测试时会导致错误。并且在打开现有项目时,似乎删除/移动了应用文件夹。
这是gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.rowel.animation"
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-rc01'
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'
答案 0 :(得分:1)
将您的targetSdkVersion
和27
更改为implementation 'com.android.support:appcompat-v7:27.1.1'
并更改此内容
isDaytime
答案 1 :(得分:1)
SDK 28有问题,存在很多布局问题和程序错误。
您可以尝试在Base.
的主题的父项中添加styles.xml
例如:
<resource>
<style name="AppTheme" parent="Theme.AppCompat">
...
到
<resource>
<style name="AppTheme" parent="Base.Theme.AppCompat">
...
如果不起作用,请尝试使缓存无效
如果该方法也不起作用,请尝试将targetSdkVersion
更改为27或以下