26

テキスト ビューの後に 2 つの編集テキストが続く単純なアクティビティがあります。入力を開始すると、ソフト キーボードによってレイアウトが押し上げられ、アクション バーが非表示になり、テキストの選択/コピー/貼り付けができなくなります。

私の活動は次のようになります。

通常のアクティビティ ビュー

入力を開始すると、このようにアクション バーが非表示になります。さらに重要なことに、テキストが強調表示されているにもかかわらず、通常のコピー ペースト バーが表示されないことに注意してください。

アクション バーとコピー/貼り付けバーが表示されない

アクション バーが隠れないようにするにはどうすればよいですか?

  • SOの他のヒント(スクロールビューの使用など)を試しましたが、うまくいきませんでした。
  • アプリは Android Studio 1.4.1 ウィザードと Drawer Activity を使用して作成されます。
  • 私のアクティビティ マニフェストでは、adjustPan を使用しています。私はadjustResizeを使いたくありません。

    android:windowSoftInputMode="stateAlwaysHidden|adjustPan"

私の活動はここにあります:

<?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>
4

3 に答える 3

2

ステップ 1 : 各ビューから属性を削除fitsSystemWindowし、マニフェストのアクティビティ タグに追加します。

ステップ 2 :app:layout_behavior="@string/appbar_scrolling_view_behavior"この行を線形レイアウトから削除します。これは実際にアクションバーを上に押しているコードです。

これらの2つの手順で問題が解決しました。あなたにも役立つことを願っています。

于 2016-09-20T05:19:30.830 に答える
0

AppBarLayout 内にツールバーを追加し、AppBarOverLay および PopOverlay テーマを追加します。

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

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

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

スタイル.xml

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
于 2016-09-20T05:11:03.303 に答える