gpt4 book ai didi

Android:如何在 Activity 上方显示透明加载层

转载 作者:行者123 更新时间:2023-11-29 16:31:18 24 4
gpt4 key购买 nike

我已经测试了 2 种方法来在 Activity 上方显示透明加载层(进度条)但 Activity 内容被隐藏,这是第一个:

<RelativeLayout
android:id="@+id/loadingPanel"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center" >

<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true" />
</RelativeLayout>

还有另一种带有样式的方法

<RelativeLayout
style="@style/GenericProgressBackground"
android:id="@+id/loadingPanel">
<ProgressBar
style="@style/GenericProgressIndicator"/>
</RelativeLayout>

<style name="GenericProgressBackground" parent="android:Theme">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:background">#DD111111</item>
<item name="android:gravity">center</item>
</style>
<style name="GenericProgressIndicator" arent="@android:style/Widget.ProgressBar.Small">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:indeterminate">true</item>
</style>

隐藏或显示

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

(两者都添加为 Root View 中的第一项)

但是这两种方法都隐藏了 Activity ,我想像下图一样显示为半透明,我该怎么做?

enter image description here

最佳答案

像这样,

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">

<!-- Your lay out code here-->

</LinearLayout>

<RelativeLayout
android:id="@+id/loadingPanel"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0.8"
android:background="#000000" />

<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:indeterminate="true" />


</RelativeLayout>

</FrameLayout>

关于Android:如何在 Activity 上方显示透明加载层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55060626/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com