我在Android平台上构建我的应用程序。 我试图将按钮放在软键盘的正上方。 所以我添加了
android:windowSoftInputMode="adjustResize"
并没有得到我想要的结果。但是我在搜索我读了一个 使用
的解决方案 android:fitsSystemWindows="true"
他说它会起作用。
因此,我试过这一行。而不是有我想要的结果, 日志说,
错误:(17)找不到属性' fitsSysstemWindows'在包' android'
我删除了这一行,并尝试编译应用程序并继续添加 这一行(我删除的那一行)并抛出错误。
我的清单看起来像这样(不要关心包裹名称我只是改变了它,因为我无法透露我目前正在做的工作
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="blahbalh"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="18"
android:targetSdkVersion="23" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity
android:name="blahblah.MainActivity"
android:fitsSysstemWindows="true"
android:windowSoftInputMode="adjustResize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>