1. 程式人生 > >Android——華為虛擬鍵盤EditText被頂起

Android——華為虛擬鍵盤EditText被頂起

bug描述:

EditText獲得焦點後鍵盤被吊起,但是EditText沒有在虛擬鍵盤的頂端,而是被頂起了一個虛擬鍵盤的高度如下圖所示:

這裡寫圖片描述

解決辦法:

在佈局檔案中寫成EditText被雙ViewGroup包裹例如:
<ReleateLayout>
    <ReleateLayout>
        <EditText/>
    </ReleateLayout>
</ReleateLayout>

在<Activity>標籤下加入
        <activity
            android:name
="com.xiaozhutv.pigtv.live.view.LiveWatchActivity" android:configChanges="keyboardHidden|orientation" android:hardwareAccelerated="false" android:launchMode="singleTask" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar"
android:windowSoftInputMode="adjustPan">
<intent-filter> <action android:name="com.shoushi.yl.action.LIVE_ROOM"/> <category android:name="android.intent.category.DEFAULT"/> </intent-filter> </activity
>

注意:android:theme=”@android:style/Theme.NoTitleBar”