键盘和键盘背景

时间:2016-05-22 03:22:08

标签: android

我怎样才能将背景设置为永不移动。 我试过了:android:windowSoftInputMode="adjustPan|stateVisible" 但它超过了上排。

以及如何删除顶行

(where it says the app name)

1 个答案:

答案 0 :(得分:0)

使用此主题隐藏工具栏

 android:theme="@style/Theme.AppCompat.Light.NoActionBar"

如果您想为单Activity应用主题,那么

<activity
            android:name=".ActivityName"
            android:theme="@style/Theme.AppCompat.Light.NoActionBar"
            ......................................................
            ...................................................... >
</activity>

如果您想为整个Android项目使用相同的主题,请使用

 <application
                android:theme="@style/Theme.AppCompat.Light.NoActionBar"
                ......................................................
                ...................................................... >
 </application>