为什么仅当Button被禁用时,Button上的ProgressBar才可见?

时间:2016-07-05 12:17:10

标签: android android-button android-progressbar android-framelayout

我在FrameLayout中有一个Button和一个ProgressBar。为什么只有在禁用Button时我的ProgressBar才可见?我在Android 6.0.1上运行我的应用程序。

这是我的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="16dp">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <Button
            android:id="@+id/btn_love"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Love" />

        <ProgressBar
            android:id="@+id/progress_bar"
            style="?android:attr/indeterminateProgressStyle"
            android:layout_width="22dp"
            android:layout_height="22dp"
            android:layout_gravity="right|center_vertical"
            android:layout_marginRight="16dp" />
    </FrameLayout>

</LinearLayout>

enter image description here

1 个答案:

答案 0 :(得分:2)

您应该增加ProgressBar的高程。您会找到原因here