我有一个Button
在 a 中定义RelativeLayout
如下:
<Button
android:id="@+id/search_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/current_location"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:paddingBottom="30dp"
android:paddingTop="30dp"
android:text="@string/search" />
我想在Button后面添加一个ProgressBar,它与Button占据完全相同的空间,这样当按钮被禁用(半透明)时,你可以看到它后面的进度条。我该怎么做?