ทัศนวิสัย Android P การรับรู้ปุ่มตั้งค่าความสามารถในการเรียกใช้ได้จากกลุ่มไลบรารีเดียวกันเท่านั้น


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ค่า int ในcom.google.android.materialแพ็คเกจนั้นและสิ่งเดียวที่ฉันพบคือ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 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/…
Kyle Falconer

@KyleFalconer Canary 15 พร้อมใช้งานแล้วให้ตรวจสอบว่าการอัปเดตสามารถแก้ไขปัญหาของคุณได้หรือไม่ :)
Levi Moreira

2
@PankajKumar Yup ยังขาดอยู่ แต่ฉันหาวิธีแก้ปัญหาอื่น (เพิ่ม "แก้ไข 2" ให้กับคำถามของฉัน)
Kyle Falconer

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
นี่ยังเป็นการเพิ่มอนิเมชั่นที่สวยงามอีกด้วย!
รอ

1
สวัสดีมีวิธีการทาง GONE และ INVISIBLE หรือไม่?
Siarhei

การใช้. show () สามารถลบคำเตือนได้ แต่มีหนึ่งปัญหา: หาก FAB ได้ตั้งไว้ตัวอย่างเช่นใน XML, android: alpha = "0.5" เพื่อความโปร่งใสความโปร่งใสจะไม่ทำงาน จะแก้ไขปัญหานี้ได้อย่างไร? แต่ฉันจะชอบใช้ demoFab.visibility = View.VISIBLE ถ้า .show () ไม่สามารถทำงานกับ Android: alpha
Fisher

วิธีการแสดงและซ่อนเหมาะสำหรับปุ่มการกระทำแบบลอยตัวมาตรฐาน
FirestormXYZ

9

ดูเหมือนว่าจะทำงานได้ดีเพียงแค่โยนมันไปดู

(mFloatingActionButton as View).visibility = INVISIBLE

แน่นอนคุณต้องจำไว้ว่าการมองเห็นอาจส่งผลกระทบต่อส่วนประกอบอื่น ๆ ดังนั้นคุณควรใช้ show()และhide()ในเวลาเดียวกันเพื่อให้แน่ใจว่าส่วนประกอบอื่น ๆ ได้รับแจ้งถึงการเปลี่ยนแปลง


5
ถ้าฉันต้องการตั้งค่าการมองเห็นเป็น GONE แทนที่จะมองไม่เห็นล่ะ
charlie

1
@ charlie คุณคาดหวังอะไรที่แตกต่างระหว่าง GONE และ INVISIBLE จากปุ่มการกระทำแบบลอยตัว? โดยปกติแล้ว fab จะอยู่เหนือเลย์เอาต์อื่น ๆ เพื่อไม่ให้มีพื้นที่ว่าง
อันเหลือเชื่อ

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"

การใช้การมองเห็นหายไปหมายความว่ามุมมองของคุณไม่ใช้พื้นที่ในเค้าโครงของคุณในขณะที่ "มองไม่เห็น" จะใช้พื้นที่ที่ไม่จำเป็นบนเค้าโครงของคุณ

ในตัวอย่างนี้: มุมมองของฉันอยู่ใน ViewHolder และ iam ที่อ้างอิงถึงปุ่มจากส่วนย่อยที่มี recylerview


3

สิ่งนี้ยังใช้งานได้:

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

ใช่มันฉันใช้ชิ้นส่วนในตัวอย่างของฉัน: setVisibility (View.GONE); ไม่ได้ทำงานเป็นชิ้น ๆ โดยเฉพาะอย่างยิ่งเมื่อคุณได้ประกาศมุมมองของคุณใน 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

สำหรับ com.google.android.material.floatingactionbutton.FloatingActionButton

ทัศนวิสัย

ใช้วิธีการแสดงและซ่อนเพื่อทำให้การมองเห็นของ FloatingActionButton มีชีวิตชีวา แอนิเมชั่นโชว์จะทำให้วิดเจ็ตโตขึ้นและจางหายไปในขณะที่แอนิเมชั่นซ่อนจะทำให้วิดเจ็ตหดตัวและจางหายไป

ที่มา: 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.