作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经使用 Plugin.Fingerprint Pluginin 我的 xamarin 应用程序实现了手指触摸登录。
我不想在对话中显示 USE FALLBACK 选项。
我试过这种方法来隐藏它
var config = new AuthenticationRequestConfiguration("pput your finger to authenticate!")
{
FallbackTitle = string.Empty
};
var auth = await CrossFingerprint.Current.AuthenticateAsync(config);
最佳答案
在android平台上,如果你想禁用它,你可以继承FingerprintDialogFragment并覆盖OnCreateView。
public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
var view = base.OnCreateView(inflater, container, savedInstanceState);
view.FindViewById<Button>(Resource.Id.fingerprint_btnFallback).Visibility = ViewStates.Gone;
return view;
}
public override void OnCreate()
{
base.OnCreate();
RegisterActivityLifecycleCallbacks(this);
//A great place to initialize Xamarin.Insights and Dependency Services!
CrossFingerprint.SetCurrentActivityResolver(() => CrossCurrentActivity.Current.Activity);
CrossFingerprint.SetDialogFragmentType<MyCustomDialogFragment>();
}
关于xamarin.forms - 如何在 Plugin.Fingerprint 对话框中隐藏 USE FALLBACK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48108377/
我是一名优秀的程序员,十分优秀!