web-dev-qa-db-ja.com

Android P visibilityawareimagebutton.setVisibilityは、同じライブラリーグループから呼びかけません。

com.google.Android.material.floatingactionbutton.FloatingActionButtonの一部である新しいAndroid P 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
    }
}

enter image description here

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

https://developer.Android.com/training/system-ui/visibility

そのcom.google.Android.materialパッケージにVISIBLE 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を使用していることに注意する必要があります。それはこのバージョンのためにいくつかの報告されたバグがあったようです。

編集2:

Android Studioバージョン3.2カナリア15にはまだ問題がありますが、show()hide()を使用した回避策を見つけました

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

方法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() {
    ....
}
172
Akhila Madari

つかいます:

 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"

可視性がなくなったということは、あなたのビューがあなたのレイアウト上のスペースを占有しないのに対して、「見えない」はあなたのレイアウト上の不要なスペースを占有するということです。

この例では:私のビューはViewHolderの中にあり、iamはrecylerviewを持つフラグメントのボタンを参照しています

3
RileyManda

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

(mFloatingActionButton as View).visibility = INVISIBLE

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

3
Andreas

これも動作します:

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

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
Kevin
if(data){
            fragmentPendingApprovalDetailsBinding.fabPendingList.show();
        }else {
            fragmentPendingApprovalDetailsBinding.fabPendingList.hide();
        }
0
Soumen Das