Android P visibilityawareimagebutton.setVisibilityは、同じライブラリグループからのみ呼び出すことができます


143

の一部である新しいAndroid P FloatingActionButtonを使用しようとしていますが、com.google.android.material.floatingactionbutton.FloatingActionButton次の警告が表示されます。

VisibilityAwareImageButton.setVisibilityは、同じライブラリグループ(groupId = com.google.android.material)からのみ呼び出すことができます

import com.google.android.material.floatingactionbutton.FloatingActionButton
import android.view.View

class MainActivity : AppCompatActivity() {

    lateinit var demoFab: FloatingActionButton

    override fun onCreate(savedInstanceState: Bundle?) {
        demoFab = findViewById(R.id.demoFab)
        demoFab.visibility = View.VISIBLE  // the warning is here
    }
}

ここに画像の説明を入力してください

私は検索してみましたが、唯一の検索結果は、UIの可視性の変更への対応に関するものです。

UIの可視性の変更に対応する

VISIBLEそのcom.google.android.materialパッケージにint値があるかどうかを確認する方法を調べてみましたがcom.google.android.material.floatingactionbutton.FloatingActionButton.VISIBLE、見つかったのはだけでしたが、警告はまだ残っています。

トップレベルのbuild.gradle

buildscript {
    ext.kotlin_version = '1.2.41'
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0-alpha14'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "com.google.gms:oss-licenses:0.9.2"
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        mavenCentral()
        maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

プロジェクトレベルのbuild.gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

apply plugin: 'com.google.gms.oss.licenses.plugin'

android {
    compileSdkVersion 'android-P'
    defaultConfig {
        applicationId "com.codeforsanjose.maps.pacmap"
        minSdkVersion 21
        targetSdkVersion 'P'
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    splits {
        abi {
            enable true
            reset()
            include 'arm64-v8a', 'armeabi', 'armeabi-v7a', 'mips', 'x86', 'x86_64'
            universalApk false
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.0.0-alpha1'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.0-alpha2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha2'

    implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:5.5.2'
    //implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:6.1.0'
    implementation 'com.mapbox.mapboxsdk:mapbox-android-plugin-locationlayer:0.5.0'
    implementation 'com.mapbox.mapboxsdk:mapbox-android-navigation:0.13.0'
    implementation 'com.mapbox.mapboxsdk:mapbox-android-navigation-ui:0.13.0'

    implementation 'com.google.android.gms:play-services-oss-licenses:15.0.1'
    implementation 'com.google.code.gson:gson:2.8.2'
    implementation 'com.squareup.moshi:moshi:1.5.0'
    implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
    implementation 'com.squareup.retrofit2:converter-moshi:2.4.0'
    implementation "com.squareup.retrofit2:adapter-rxjava2:2.3.0"
    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
    implementation 'io.reactivex.rxjava2:rxkotlin:2.2.0'
}

編集:

Android Studioバージョン3.2カナリア14を使用していることに注意してください。このバージョンではいくつかのバグが報告されているようで、これはそのうちの1つだと思います。

編集2:

Android Studioバージョン3.2 Canary 15でも問題は存在しますが、show()hide()

override fun onCreate(savedInstanceState: Bundle?) {
    demoFab = findViewById(R.id.demoFab)
    demoFab.show()    // this works and doesn't have the warning
}

正しいパッケージはandroid.support.design.widget.FloatingActionButtonです
Pankaj Kumar

Android PとJetpackで、Fabはこのパッケージに移動されました。これは私が使用しようとしているパッケージです。developer.android.com/reference/com/google/android/material/...
カイル・ファルコナー

@KyleFalconer Canary 15が利用可能になりました。更新で問題を解決できるかどうかを確認してください:)
Levi Moreira

2
@PankajKumarはい、まだ壊れていますが、別の回避策を見つけました(私の質問に「編集2」を追加しました)。
カイルファルコナー

5
この問題はバグを説明しています:issuetracker.google.com/issues/115924750残念ながら、解決策や修正ATMはないため、影響を受けるすべてのユーザーがスターを付ける必要があります。
ChristophK

回答:


266

方法1の使用

demoFab.show(); // in place of visible
demoFab.hide(); // in place of Invisible suppress the warning/error for me.

および方法2

@SuppressLint("RestrictedApi") // also suppressed the warning
private void setUp() {
    ....
}

更新:

方法3:

demoFab.setVisibility(View.GONE);
demoFab.setVisibility(View.INVISIBLE);
demoFab.setVisibility(View.VISIBLE);

方法4:

demoFab.visibility = View.GONE
demoFab.visibility = View.INVISIBLE
demoFab.visibility = View.VISIBLE

2
これも美しいアニメーションを追加します!
ROR

1
こんにちは、GONEメソッドとINVISIBLEメソッドはありますか?
Siarhei

.show()を使用すると警告を削除できますが、1つの問題があります。たとえば、FABがXMLで透明度にandroid:alpha = "0.5"を設定していると、透明度が機能しません。この問題を解決する方法は?代わりに、.show()がandroid:alphaで機能しない場合は、demoFab.visibility = View.VISIBLEを使用することをお勧めします
フィッシャー

メソッドshowおよびhideは、標準のフローティングアクションボタンに最適です。
FirestormXYZ 2019

9

ビューにキャストするだけで問題なく動作するようです。

(mFloatingActionButton as View).visibility = INVISIBLE

もちろん、あなたは、おそらく使用する必要がありますので、視認性は、他のコンポーネントに影響を与える可能性があることを覚えておく必要があるshow()hide()他のコンポーネントは変更が通知されていることを確認すると同時に。


5
可視性をINVISIBLEではなくGONEに設定する場合はどうなりますか?
チャーリー

1
@charlieフローティングアクションボタンのGONEとINVISIBLEの違いは何ですか。ファブは通常、残りのレイアウトの上にあるため、場所をとりません。
信じられないほどのJan

6

使用する:

 myButton.hide();
 myClearButton.hide();

典型的な例は次のとおりです。

ユーザーが入力しているとき、またはEditTextリソースにフォーカスしているときのボタンの非表示と表示:

ユーザーが入力しているか、フォーカスがあるかどうかを確認します。

 mCommentField.setOnFocusChangeListener(new View.OnFocusChangeListener() {
        @Override
        public void onFocusChange(View view, boolean hasFocus) {
            if (hasFocus) {
                //user has focused
                showBts();

            } else {
                //focus has stopped perform your desired action
                hideButtons();
            }
        }


    });

ボタンの非表示および表示メソッド:

private void hideButtons() {

    mCommentButton.hide();
    mClearButton.hide();
}

private void showBts() {

    mCommentButton. show();
    mClearButton.show();

そして、xmlで、ボタンをデフォルトで非表示に設定して、ユーザーがフォーカスを持っているか入力しているときにのみ表示/表示するようにします。

android:visibility="invisible"

ベストプラクティス:

 android:visibility="Gone"

可視性がなくなったことは、ビューがレイアウト上のスペースを占有しないことを意味しますが、「非表示」はレイアウト上の不要なスペースを占有します。

この例では、My ViewsはViewHolderにあり、iamはrecylerviewでフラグメントのボタンを参照しています


3

これも機能します:

findViewById(R.id.fab).setVisibility(View.GONE);

はい、そうです。私の例ではフラグメントを使用していました:setVisibility(View.GONE); 独自の別のクラスにあるviewHolderでビューを宣言し、単にViewholderから参照している場合は特に、フラグメントで機能するとは限りません。
RileyManda

0

Kotlinには拡張メソッドがあります

fun viewsVisibility(visibility: Int, vararg views: View) {
    for (view in views) { view.visibility = visibility }
}

次に、コードで次のことができます

viewsVisibility(View.VISIBLE, demoFab) 
viewsVisibility(View.GONE, demoFab)
viewsVisibility(View.INVISIBLE, demoFab, addFab, removeFab)

エラーはなくなり、これにより、処理するビューのリストを取り込むとともに、可視性の状態に柔軟性が与えられます。最後のサンプル行に示すように、一度に複数のビューを処理しなければならないことがよくあります。


0
if(data){
            fragmentPendingApprovalDetailsBinding.fabPendingList.show();
        }else {
            fragmentPendingApprovalDetailsBinding.fabPendingList.hide();
        }

0

ために com.google.android.material.floatingactionbutton.FloatingActionButton

可視性

FloatingActionButtonの可視性をアニメーション化するには、showメソッドとhideメソッドを使用します。表示アニメーションはウィジェットを拡大してフェードインし、非表示アニメーションはウィジェットを縮小してフェードアウトします。

ソース: https //material.io/develop/android/components/floating-action-button/

以下のためのandroid.support.design.widget.FloatingActionButton 使用setVisibility()方法


0

上記の方法では機能しなかったため、機能させるための拡張関数を作成しました。

fun View.showView() {
    this.visibility = View.VISIBLE
}

fun View.hideView() {
    this.visibility = View.GONE
}

今のように呼び出す

binding.fabAdded.showView()
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.