gpt4 book ai didi

android - 软键盘隐藏操作栏

转载 作者:IT老高 更新时间:2023-10-28 22:15:13 25 4
gpt4 key购买 nike

我有一个简单的 Activity ,其中包含一个 TextView ,后跟两个编辑文本。当我开始打字时,软键盘向上插入布局并隐藏操作栏,我将无法选择/复制/粘贴文本。

我的 Activity 如下所示:

Normal activity view

当我开始输入时,操作栏会隐藏起来,就像这样 - 更重要的是,请注意即使突出显示文本,正常的复制粘贴栏也会丢失:

Missing action bar and the copy/paste bar

如何确保操作栏不隐藏?

  • 我尝试了 SO 的其他一些技巧(例如使用 ScrollView ),但都没有奏效。
  • 该应用是使用带有 Drawer Activity 的 Android Studio 1.4.1 向导创建的。
  • 在我的 Activity list 中,我使用了 adjustPan。我不想使用adjustResize。

    android:windowSoftInputMode="stateAlwaysHidden|adjustPan"

我的 Activity 在这里:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/navigation_drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/app_theme.app_bar_overlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/app_theme.popup_overlay" />

</android.support.design.widget.AppBarLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/activity_margin"
android:fillViewport="true"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:background="@android:color/darker_gray"
android:text="My holiday story here." />

<View
android:layout_width="match_parent"
android:layout_height="@dimen/activity_margin" />

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/gap_normal"
android:gravity="top"
android:text="My Holiday in Europe" />

<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:gravity="top"
android:text="My holiday story is blah blah blah blah blah blah blah blah blah..." />

</LinearLayout>


</android.support.design.widget.CoordinatorLayout>

<com.magicparcel.app.mysampleapp.ui.CustomNavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/navigation_drawer_header"
app:itemIconTint="@color/app_grey_500"
app:menu="@menu/drawer_main" />

</android.support.v4.widget.DrawerLayout>

最佳答案

尝试在工具栏中添加 app:layout_collapseMode="pin"

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_collapseMode="pin"
app:popupTheme="@style/app_theme.popup_overlay" />

以及在editText Set android:textIsSelectable="true" 中启用复制/粘贴功能请查看https://developer.android.com/guide/topics/text/copy-paste.html

关于android - 软键盘隐藏操作栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33458529/

25 4 0