我有一个Android应用程序,使用Xamarin用c#编写。我已将应用程序缩减为包含TextView和Google admod AdView的LinearLayout以用于横幅广告。
我不希望软键盘出现在应用中 - 它不是必需的。如果我启动应用程序,则会出现TextView和横幅添加。如果我然后切换到另一个应用程序,然后切换回第一个应用程序,一旦第一个应用程序恢复,软键盘就会弹出。只有AdView存在时才会出现这种情况。如果我从应用中删除AdView,则不会弹出软键盘。
首次启动应用并且AdView存在时,键盘不会播放 - 仅当应用暂停并恢复时才会显示。
我有以下OnResume覆盖:
protected override void OnResume()
{
base.OnResume();
InputMethodManager im = (InputMethodManager)GetSystemService(Context.InputMethodService);
im.HideSoftInputFromWindow(Window.DecorView.WindowToken, Android.Views.InputMethods.HideSoftInputFlags.None);
}
但如果我加入AdView,键盘仍会弹出简历。
我尝试在OnResume中专门为AdView隐藏键盘:
im.HideSoftInputFromWindow(adView.WindowToken, Android.Views.InputMethods.HideSoftInputFlags.None);
但这也没有帮助。
我已尝试过在许多其他stackoverflow问题中可以找到的所有建议。我可以防止键盘在任何情况下弹出,除非在AdView存在时恢复应用程序。
我很难过。有什么想法吗?
更多细节......
首先,纠正。我在LinearLayout上有一个EditText,而不是TextView。我不想要软键盘,但我确实希望EditText可以编辑(在应用程序的完整版本中我提供了在EditText中添加/删除/更改文本的按钮)。
我已将应用程序缩减为包含EditText和AdView的单个LinearLayour。如果我将广告加载到AdView并运行应用,切换到另一个应用,然后切换回来,弹出软键盘。我不想要那个。但是,如果我没有将广告加载到AdView(但仍然在axml文件中包含AdView),然后运行并切换等,则不会弹出软键盘。
来源如下:
AndroidMainifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="App1.App1" android:versionCode="1" android:versionName="1.0">
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application android:label="App1">
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent"
android:windowSoftInputMode="stateAlwaysHidden" />
</application>
</manifest>
Main.axml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:ads="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/layout">
<EditText xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editText" />
<com.google.android.gms.ads.AdView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/adView"
ads:adSize="SMART_BANNER"
ads:adUnitId="ca-app-pub-3940256099942544/6300978111">
</com.google.android.gms.ads.AdView>
</LinearLayout>
MainActivity.cs:
using Android.App;
using Android.Content;
using Android.Views;
using Android.Views.InputMethods;
using Android.OS;
using Android.Widget;
using Android.Gms.Ads;
namespace App1
{
[Activity(Label = "App1", MainLauncher = true, Icon = "@drawable/icon")]
public class MainActivity : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.Main);
AdView adView = FindViewById<AdView>(Resource.Id.adView);
var requestbuilder = new AdRequest.Builder();
adView.LoadAd(requestbuilder.Build());
}
protected override void OnResume()
{
base.OnResume();
InputMethodManager im = (InputMethodManager)GetSystemService(Context.InputMethodService);
im.HideSoftInputFromWindow(Window.DecorView.WindowToken, Android.Views.InputMethods.HideSoftInputFlags.None);
LinearLayout layout = FindViewById<LinearLayout>(Resource.Id.layout);
im.HideSoftInputFromWindow(layout.WindowToken, Android.Views.InputMethods.HideSoftInputFlags.None);
EditText editText = FindViewById<EditText>(Resource.Id.editText);
im.HideSoftInputFromWindow(editText.WindowToken, Android.Views.InputMethods.HideSoftInputFlags.None);
AdView adView = FindViewById<AdView>(Resource.Id.adView);
im.HideSoftInputFromWindow(adView.WindowToken, Android.Views.InputMethods.HideSoftInputFlags.None);
}
}
}
上面显示的代码演示了我的问题。将应用程序部署到手机,运行应用程序,切换到另一个应用程序,然后再切换回来,并在恢复第一个应用程序时弹出软键盘。但是......在MainActivity.cs中注释掉以下代码行:
adView.LoadAd(requestbuilder.Build());
并重复部署等,软键盘不会弹出。
正如我所说,我很难过。我尝试将一个用于focuschange的处理程序添加到EditText以弹出键盘,但据我所知,只有当EditText失去焦点时才会调用它。