出现键盘时屏幕缩小

Screen shrinks when keyboard appearing

我在 Android 应用程序上有以下屏幕:

当我按下 SearchView 时,屏幕缩小成这样:

我希望屏幕在出现键盘时保持静止(如第一张图片所示)。 这是我的 xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightSum="10"
    android:minWidth="25px"
    android:minHeight="25px">
    <SearchView
        android:minWidth="25px"
        android:minHeight="25px"
        android:background="@drawable/rounded_border"
        android:clickable="true"
        android:iconifiedByDefault="false"
        android:focusable="false"
        android:layout_weight="1"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:id="@+id/searchViewCustomers" />
    <android.support.v7.widget.RecyclerView
        android:id="@+id/customersRecyclerView"
        android:scrollbars="vertical"
        android:layout_weight="8"
        android:layout_width="match_parent"
        android:layout_height="0dp" />
    <Button
        android:text="Нов"
        android:layout_weight="1"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:id="@+id/button1" />
</LinearLayout>

我已经尝试了在互联网上找到的解决方案,但它们对我不起作用,可能是因为它们适用于 Android(Java)。如果有比 xml 而不是 C# 代码更好的方法。

I want the screen to stay still (as in the first image) when keyboard appears.

如果您不希望屏幕自动调整,您可以将 activity 的 WindowSoftInputMode 设置为 SoftInput.AdjustNothing,如下所示:

[Activity(Label = "Sample", MainLauncher = true,WindowSoftInputMode = SoftInput.AdjustNothing)]
public class MainActivity : Activity
{
    RecyclerView mRecyclerView;
    private RecyclerView.Adapter mAdapter;
    private RecyclerView.LayoutManager mLayoutManager;
    ...
}