Xamarin.Android(以前称为Android的Mono)是在Android平台上运行的Mono的实现,允许您使用本机Android库以及使用.NET BCL(基类库)在C#中编写Android应用程序。
是否可以在移动应用程序(xamarin)中实施 Facebook Pixel?
我想在我的移动应用程序中实施 Facebook Pixel 来跟踪用户行为和事件。这可能吗?如果是这样,最好的方法是什么?是否有任何我了解的 SDK 或库...
我开发了一个应用程序,用户可以在一个屏幕上成组扫描一些条形码——一组可能有 2 个,另一组可能有 3 或 4 个。这些条形码相距很远,例如。一组中的第一个...
我正在为 Android 和 iOS 开发一个便携式应用程序。我当前的功能是截取屏幕截图并在代码中使用该图像。因此,我在可移植库中有一个接口。 公共接口
如何从资产文件夹 Xamarin.android 中的 html 文件访问应用程序内部存储?
我必须将 .svf 文件加载到我的 WebView 中。我的资产文件夹中有一个 HTML 文件,.svf 文件和所有相关文件也包含在同一文件夹中。我正在使用
如何使用xamarin forms获取移动应用程序中运行的应用程序列表?我试过使用 GetRunningTasks 但它已经过时了
我试图使用 xamarin 的 GetRunningTasks 活动管理器获取在移动设备上运行的应用程序列表。 我曾尝试使用 GetRunningTasks 方法,但现在它已过时。替代品是什么...
我尝试使用带有自托管代理的 Azure 管道构建 Xamarin 应用程序,但我遇到了这个错误 [错误]在池 MyPool 中找不到满足以下条件的代理 需求:Xamarin.Androi...
XAMARIN Android - 应用内通知在 Xamarin.Firebase.Messaging 的 RELEASE 模式下不起作用
我有一个带有 Xamarin 的 Android 应用程序,我使用 FirebaseMessaging 来接收通知。当应用程序关闭时我会收到通知,当应用程序关闭时我会在应用程序中收到通知......
我正在尝试访问 Xamarin 表单中的电话管理器类。我阅读了 Xamarin 中需要使用的构造函数。 虽然我对构造函数需要的类型仍然有些困惑,...
如何通过单击应用程序本身的按钮来更新 xamarin 应用程序
我有一个 xamarin 应用程序并使用 Appcenter 进行发布,我们的应用程序中有一个设置页面,如果 appcenter 中有新版本可用,则需要启用更新按钮。还需要起来...
如何检查设备是否有可用的 SD 卡,然后获取该 SD 卡的路径? 当我检查 bool emulated = Android.OS.Environment.IsExternalStorageEmulated;它返回 true,尽管
使用 Android 版本 31 构建时 Xamarin.Android Java 退出代码 1
我有 Xamarin Android 项目并设置了“使用 Android 版本编译。(目标框架)在 Android 12。 我能够在版本 30 (Android 11) 及以下版本上成功构建项目。
Android api 级别要求是 minsdkversion 29 allowed
有人可以为我澄清一下吗?在我的android清单文件中 使用-sdk android:minSdkVersion="29" android:targetSdkVersion="33" 阅读谷歌文档 https://
我有一个 MonoAndroid10 项目,它有很多依赖项(还有 NuGet 包)。我希望能够将所有 DLL 依赖项复制到输出文件夹。 通常在 .Net 标准中 ...
如何在 Xamarin Android 的 LinearLayout 上获得圆角?
我想知道如何圆角我的 Xamarin Android 线性布局。我有以下 xml 布局代码: 我想知道如何圆角我的 Xamarin Android 线性布局。我有以下 xml 布局代码: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="match_parent" android:backgroundTint="@android:color/holo_green_dark"> <ImageView android:id="@+id/iv1" android:src="@android:drawable/ic_media_play" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <TextView android:id="@+id/tv1" android:text="S" android:layout_marginLeft="22dp" android:layout_marginTop="4dp" android:layout_marginRight="0dp" android:layout_width="50dp" android:layout_height="50dp" android:textSize="20dp" android:textAlignment="center" /> <TextView android:id="@+id/tv2" android:text="S" android:layout_marginLeft="0dp" android:layout_marginTop="4dp" android:layout_marginRight="5dp" android:layout_width="50dp" android:layout_height="50dp" android:textSize="20dp" android:textAlignment="center" /> </LinearLayout> 和按以下方式创建的View: public void CreateFloatingWindow() { windowManager = GetSystemService(WindowService).JavaCast<IWindowManager>(); LayoutInflater mLayoutInflater = LayoutInflater.From(ApplicationContext); floatView = mLayoutInflater.Inflate(Resource.Layout.floatview, null); // set LayoutParam layoutParams = new WindowManagerLayoutParams(); layoutParams.Width = 400; layoutParams.Height = 200; layoutParams.X = 210; layoutParams.Y = 300; if ((int)Build.VERSION.SdkInt >= 26) { layoutParams.Type = WindowManagerTypes.ApplicationOverlay; } else { layoutParams.Type = WindowManagerTypes.Phone; } layoutParams.Flags = WindowManagerFlags.NotTouchModal; layoutParams.Flags = WindowManagerFlags.NotFocusable; //set round corners GradientDrawable shape = new GradientDrawable(); shape.SetCornerRadius(CORNER_RADIUS); floatView.SetBackground(shape); windowManager.AddView(floatView, layoutParams); } 我最终得到的结果如下。内部形状的角是圆形的,但角外是 black 背景。 如何让黑角透明。有什么想法吗? 更新 再次尝试layout_bg.xml: <?xml version="1.0" encoding="UTF-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#00FFFF"/> <stroke android:width="3dp" android:color="#B1BC76" /> <corners android:radius="40dp"/> <padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" /> </shape> 和 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="match_parent" android:background="@drawable/layout_bg"> ... 新形状的绿色描边和青色背景都透出来了,但边角还是黑色 我已经添加了一些代码片段和输出图像,正如你上面在你的疑问/问题/问题中所说的 在主 xml 文件下面 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="10dp" android:padding="10dp" android:background="@drawable/temp"> <ImageView android:id="@+id/iv1" android:src="@android:drawable/ic_media_play" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <TextView android:id="@+id/tv1" android:text="S" android:layout_marginLeft="22dp" android:layout_marginTop="4dp" android:layout_marginRight="0dp" android:layout_width="50dp" android:layout_height="50dp" android:textSize="20dp" android:textAlignment="center" /> <TextView android:id="@+id/tv2" android:text="S" android:layout_marginLeft="0dp" android:layout_marginTop="4dp" android:layout_marginRight="5dp" android:layout_width="50dp" android:layout_height="50dp" android:textSize="20dp" android:textAlignment="center" /> </LinearLayout> 这里是所需形状的可绘制对象 <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <corners android:topLeftRadius="20dp" android:topRightRadius="20dp" android:bottomLeftRadius="20dp" android:bottomRightRadius="20dp" /> <solid android:color="@android:color/holo_green_dark"/> </shape> 您可以根据需要自定义转角半径 您可以根据需要对齐视图...我希望这对您有用 提前谢谢你!
How to set webview mobile to desktop mode using Xamarin
试过这个 公共部分类 MainPage : ContentPage { 公共主页() { 初始化组件(); webView.Source = "https://www.example.com/"; 网络视图。
我有一个应用程序可以接收其中包含数据的通知。当点击通知或当应用程序处于活动状态并收到通知时,我可以很好地检索该数据,但它不会......
我想从列表中选择的项目中获取值,该怎么做? 私有列表 选择 = 新的列表 (); var list = this.FindViewById (Resource.Id....
我有一个使用MVVMLight messenger的Xamarin.Android应用程序。该应用程序也在使用一个后台服务。应用程序和服务都注册到一个 ...
Xamarin.Android - 可以在Visual Studio 2019 Android UI设计器中设置你的自定义主题吗?
我正在我的hello world android应用程序中玩弄风格和主题。为此,我在style.xml文件中设置了一个自定义样式,如下所示。
下午好,请问还有什么办法?我正在研究表单中的动态调整大小和字体属性。目前,我已经对应用程序进行了更改,但它们只在创建页面后才被应用,但我想 ...