提问人:Samara Bravo 提问时间:11/4/2023 更新时间:11/6/2023 访问量:39
Xamarin.Android - 表单透明
Xamarin.Android - Form Transparent
问:
在 Xamarin Android 中,如何使表单完全透明?
在我的布局XML中....
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id ="@+id/LLBack"
android:background="@android:color/transparent"
>
</LinearLayout>
在我的 OnCreate 中...
LinearLayout ll = FindViewById<Android.Widget.LinearLayout>(Resource.Id.LLBack);
ll.SetBackgroundColor (Android.Graphics.Color.Transparent);`
但不要:(工作
答:
0赞
Jessie Zhang -MSFT
11/6/2023
#1
您可以按如下方式向文件 styles.xml 添加样式:
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="AppTheme1" parent="android:Theme.Material.Light">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
<!-- Customize your theme here. -->
<item name="android:windowIsFloating">true</item>
</style>
</resources>
并将样式应用于您的活动:
[Activity(Label = "@string/app_name", Exported = true,Theme = "@style/AppTheme1" )]
评论
0赞
Jessie Zhang -MSFT
11/13/2023
嗨,@Samara,我可以知道您的问题是否已解决吗?如果没有,请在此处分享。我们可以共同努力解决这个问题。
0赞
Jessie Zhang -MSFT
11/29/2023
嗨,@Samara Bravo,我可以知道您的问题是否已解决吗?如果没有,请在此处分享。我们可以共同努力解决这个问题。
评论