В Android Studio превью не отображается, когда в макете есть плавающая кнопка действия - PullRequest
0 голосов
/ 26 июня 2019

Точно так же, как предполагает заголовок, когда у меня есть плавающая кнопка действия в любом месте моего макета в любом xml-файле, предварительный просмотр перестает работать, я могу буквально закомментировать его, и он сразу же отлично перерисовается.какие-нибудь идеи?

Я попытался сбросить многократную синхронизацию, сделать недействительными кэши и т. д. При сбросе представление отображается нормально, но только для страниц, открытых при открытии, которое я не открываю, не будет отображаться и переходить к ранее отображенным разрывам макетаэто

Единственное, о чем я могу думать, это то, что я использую в своем проекте кнопку с плавающим действием кланов, но это кнопка Google, которая нарушает мой предварительный просмотр.

РЕДАКТИРОВАТЬ I 'Вы удалили кланы, очистили проект, недействительные кеши были перезапущены, и проблема все еще сохраняется

также, если я изменяю FloatingActionButton на ExtendedFloatingActionButton, предварительный просмотр отрисовывается нормально, глядя на эти два, кажется, они расширяют совершенно разные классы

Также используяAndroidX

здесь приведен пример XML, который не будет отображаться

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".settings.PdfSettingsActivity">

<ImageView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  app:layout_constraintBottom_toBottomOf="parent"
  app:layout_constraintStart_toStartOf="parent"
  app:layout_constraintEnd_toEndOf="parent"
  app:layout_constraintTop_toTopOf="parent"
  android:scaleType="centerCrop"
  android:layout_margin="@dimen/activity_vertical_margin_16dp"
  android:elevation="@dimen/activity_horizontal_margin_4dp"
  android:id="@+id/pdf_renderer"/>




<com.google.android.material.floatingactionbutton.FloatingActionButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/share"
    android:layout_margin="@dimen/activity_vertical_margin_16dp"
    android:src="@drawable/ic_share_white_24dp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

, если я закомментирую плавающую кнопку действия, представление немедленно отобразит

com.google.android.material.floatingactionbutton.FloatingActionButton

Android Studio 3.4.1 Сборка # AI-183.6156.11.34.5522156, построена 1 мая 2019 г. JRE: 1.8.0_152-release-1343-b01 x86_64 JVM: 64-битная виртуальная машина OpenJDK от JetBrains sro macOS 10.14.3

РЕДАКТИРОВАТЬ

Просто поэкспериментируйте с ним сейчас, и мне удается заставить его выдать ошибку:

java.lang.IllegalArgumentException: java.lang.ClassCastException@54291cbb
at sun.reflect.GeneratedMethodAccessor971.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at android.animation.PropertyValuesHolder_Delegate.callMethod(PropertyValuesHolder_Delegate.java:108)
at android.animation.PropertyValuesHolder_Delegate.nCallFloatMethod(PropertyValuesHolder_Delegate.java:143)
at android.animation.PropertyValuesHolder.nCallFloatMethod(PropertyValuesHolder.java)
at android.animation.PropertyValuesHolder.access$400(PropertyValuesHolder.java:38)
at android.animation.PropertyValuesHolder$FloatPropertyValuesHolder.setAnimatedValue(PropertyValuesHolder.java:1387)
at android.animation.ObjectAnimator.animateValue(ObjectAnimator.java:990)
at android.animation.ValueAnimator.animateBasedOnTime(ValueAnimator.java:1339)
at android.animation.ValueAnimator.doAnimationFrame(ValueAnimator.java:1471)
at android.animation.ValueAnimator.pulseAnimationFrame(ValueAnimator.java:1490)
at android.animation.AnimatorSet.pulseFrame(AnimatorSet.java:1163)
at android.animation.AnimatorSet.handleAnimationEvents(AnimatorSet.java:1146)
at android.animation.AnimatorSet.doAnimationFrame(AnimatorSet.java:1046)
at android.animation.AnimationHandler.doAnimationFrame(AnimationHandler.java:146)
at android.animation.AnimationHandler.access$100(AnimationHandler.java:37)
at android.animation.AnimationHandler$1.doFrame(AnimationHandler.java:54)
at android.view.Choreographer$CallbackRecord.run(Choreographer.java:947)
at android.view.Choreographer.doCallbacks(Choreographer.java:761)
at android.view.Choreographer_Delegate.doFrame(Choreographer_Delegate.java:66)
at com.android.layoutlib.bridge.impl.RenderSessionImpl.renderAndBuildResult(RenderSessionImpl.java:563)
at com.android.layoutlib.bridge.impl.RenderSessionImpl.render(RenderSessionImpl.java:425)
at com.android.layoutlib.bridge.BridgeRenderSession.render(BridgeRenderSession.java:120)
at com.android.ide.common.rendering.api.RenderSession.render(RenderSession.java:151)
at com.android.ide.common.rendering.api.RenderSession.render(RenderSession.java:133)
at com.android.tools.idea.rendering.RenderTask.lambda$null$8(RenderTask.java:755)
at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1590)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)

build.gradle зависимости

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
//Room dependencies
implementation 'androidx.room:room-runtime:2.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.firebase:firebase-core:16.0.4'
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
implementation 'com.google.firebase:firebase-database:16.0.4'
implementation 'com.google.firebase:firebase-storage:16.0.4'
implementation 'com.google.firebase:firebase-auth:16.0.5'
implementation 'com.firebase:firebase-client-android:2.4.0'
annotationProcessor 'androidx.room:room-compiler:2.1.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0-alpha01'
annotationProcessor "androidx.lifecycle:lifecycle-compiler:2.2.0-alpha01"
//GSON
implementation 'com.google.code.gson:gson:2.8.5'
//UI design
implementation 'com.github.hotchemi:android-rate:1.0.1'
implementation "androidx.legacy:legacy-support-core-utils:1.0.0"
implementation 'com.google.android.material:material:1.1.0-alpha07'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0-alpha06'
implementation 'com.github.siyamed:android-shape-imageview:0.9.+@aar'
implementation 'com.getkeepsafe.taptargetview:taptargetview:1.12.0'
implementation 'com.romandanylyk:pageindicatorview:1.0.3'
implementation 'com.github.VRGsoftUA:ParallaxView:1.0'
//Glide
implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
//Edit image
implementation 'com.yashoid:instacropper:1.0.6'
// FloatingActionButton
implementation 'com.github.martipello:FloatingActionButton:v2.0'
//Navigation
implementation "androidx.navigation:navigation-fragment:2.1.0-alpha05"
// For Kotlin use navigation-fragment-ktx
implementation "androidx.navigation:navigation-ui:2.1.0-alpha05"
//material components
implementation 'androidx.appcompat:appcompat:1.1.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha4'
implementation 'androidx.vectordrawable:vectordrawable:1.1.0-beta02'
//tests
testImplementation 'org.json:json:20180130'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
androidTestImplementation 'androidx.test:rules:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.2.0'
implementation 'androidx.test.espresso:espresso-idling-resource:3.2.0'
androidTestImplementation 'androidx.test.espresso.idling:idling-concurrent:3.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.2.0'
implementation 'org.apache.commons:commons-lang3:3.8.1'
}

Ответы [ 7 ]

1 голос
/ 08 июля 2019

Похоже на проблему с Android Studio, которая должна быть исправлена ​​в 3.5 beta 2 (а также в последней бета , я думаю).Более конкретно, это, похоже, было Issue # 129926965 .

Credit: here

0 голосов
/ 09 июля 2019

При сравнении с документацией ... вам, вероятно, придется использовать атрибут srcCompat вместо:

<com.google.android.material.floatingactionbutton.FloatingActionButton
   android:id="@+id/share"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_gravity="bottom|end"
   android:layout_margin="16dp"
   app:srcCompat="@drawable/ic_share_white_24dp"/>

Хотя эта часть build.gradle выглядит запутанной / избыточной:

implementation "com.github.martipello:FloatingActionButton:v2.0"
0 голосов
/ 08 июля 2019

Используйте это в макете вашего координатора и внизу.

<android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom|end"
            android:layout_margin="@dimen/fab_margin"
            app:srcCompat="@drawable/ic_done_24dp" />
    </android.support.design.widget.CoordinatorLayout>

Используйте идентификатор fab для написания определенного кода в вашем классе активности Java

0 голосов
/ 08 июля 2019

Это известная ошибка / проблема в Android Studio 3.4.x https://issuetracker.google.com/issues/132316448 Вам просто нужно подождать Android Studio 3.5.Но если вы также используете бета-версии, то эта проблема, кажется, исправлена ​​в бета-версии 2 и выше, но не подтверждена.

0 голосов
/ 05 июля 2019

Вы пробовали возиться с возвышением кнопки?

android:elevation 

или

app:elevation
0 голосов
/ 03 июля 2019

Я заметил, что вы используете AndroidX. Поскольку вы не можете использовать библиотеки поддержки с AndroidX, удалите все библиотеки поддержки из файлов build.gradle и добавьте следующее:

implementation 'com.google.android.material:material:1.1.0-alpha07'

К вашему app/build.gradle файлу.

EDIT:

Если это не сработало, проверьте на

android.enableJetifier=true
android.useAndroidX=true

в вашем файле gradle.properties.

0 голосов
/ 26 июня 2019

Полагаю, ваш состав в Деятельности или Фрагменте написан неправильно.

Проверьте, правильно ли вы импортировали FloatingActionButton класс. И это соответствует вашему View в xml.

Например,

FloatingButton btnFab = (FloatingButton) findViewById(R.id.btn_fab) // Not FloatingActionButton

в вашем xml.

<!-- Not FloatingButton -->
<com.example.FloatingActionButton 
     android:id="@+id/btn_fab"
     android:layout_width = "45dp"
     android:layout_height = "45dp"
     />

Проверьте, совпадают ли имена классов.

...