2

我在应用程序中有一个在编辑文本上具有视差效果的布局,我的问题是**当我点击编辑文本软键盘时隐藏我的编辑文本?**有人可以帮我解决这个问题,我已经搜索过它并找到了关于“WindowsoftInputmode “这在我的情况下不起作用。

清单中的代码

<activity
            android:name="one.tusk.stush.activities.NewPostDetailActivity"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="adjustResize|adjustPan" >
4

4 回答 4

4

在你的清单中试试这个,

<activity
        android:name=".rapcalsy.MainActivity"
        android:windowSoftInputMode="adjustResize">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

根据这个改变你的布局,不要错过那一行

android:isScrollContainer="true"

 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/scrollview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:isScrollContainer="true"
    android:orientation="vertical">

    <TableLayout
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:background="#000000"
        android:padding="0dp"
        android:stretchColumns="*">
        ...
    </TableLayout>
</ScrollView>
于 2016-05-20T11:36:26.060 回答
4

你应该只使用android:windowSoftInputMode="adjustResize".

如果这还不够,您可能需要将该属性添加android:fitsSystemWindows="true"到包含您的 EditText 的根布局中。

于 2016-05-20T11:46:04.393 回答
2

正如你所说,我尝试了一些然后我得到了这个工作编辑你的清单文件

    <activity
                android:name="one.tusk.stush.activities.NewPostDetailActivity"
                android:screenOrientation="portrait"
                android:windowSoftInputMode="stateVisible" >

然后在java类的oncreate中添加下面的代码行

 getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);  

因此该键盘不会直接/始终显示给您

于 2016-05-20T11:59:30.203 回答
2

请试试这个。

在 Manifest 中设置android:softInputMode属性为adjustResize并将父布局放入ScrollView中。希望这可以帮助。

于 2016-05-20T11:47:19.790 回答