按钮自带键盘如何修复

时间:2016-05-17 12:39:02

标签: android scrollview

我使用了scrollView,在scrollView之外有一个按钮,但是当我输入在scrollVIew里面的编辑文本时,按钮带有键盘,我该如何解决这个问题

<LinearLayout>
    ......
    ......
    ......

    <ScrollView>
    ......
    <EditText>....1
    <EditText>....2
    <EditText>....3
    <EditText>....4
    <EditText>....5
    <EditText>....6
    <EditText>....7
    <EditText>....8

    </ScrollView>

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="45dp"
        android:layout_margin="5dp"
        android:layout_alignParentBottom="true">

        <Button
            android:id="@+id/step1_button_submit"
            style="@style/buttonStyle.RoundCorner.Red.20sp"
            android:layout_width="match_parent"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:layout_height="wrap_content"
            android:text="@string/save" />
    </RelativeLayout>

    </LinearLayout>

2 个答案:

答案 0 :(得分:1)

尝试将键盘更改为平移而不是调整大小。您可以在AndroidManifest.xml文件中执行此操作,针对您的特定活动,将以下内容添加到其中

javac

答案 1 :(得分:0)

如果您想要隐藏:

EditText editTextSearch = (EditText) findViewById(R.id.editTextSearch);

InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editTextSearch.getWindowToken(), 0);

如果想要展示:

EditText editTextSearch = (EditText) findViewById(R.id.editTextSearch);
editTextSearch.requestFocus();
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);