gpt4 book ai didi

android - 在焦点 EditText 问题处隐藏工具栏

转载 作者:数据小太阳 更新时间:2023-10-29 02:34:35 25 4
gpt4 key购买 nike

我在聊天 Activity 的应用程序中使用 android.support.v7.widget.Toolbar。但是一旦 EditText 焦点和键盘打开,工具栏就会隐藏。

这是我的 xml 代码:app_bar.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/primaryColor"
android:minHeight="?attr/actionBarSize"
app:theme="@style/myCustomToolBarTheme"
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark" >

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

Activity .xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ccc"
android:orientation="vertical" >

<include
android:id="@+id/app_bar"
layout="@layout/app_bar" />

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/app_bar" >

<ListView
android:id="@+id/my_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>

<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:ems="10" >

<requestFocus />
</EditText>
</RelativeLayout>

</RelativeLayout>

输出屏幕:

enter image description here enter image description here

请帮帮我。

最佳答案

据我所知,您的问题是什么,我认为当您尝试在此编辑文本中键入内容时,您的布局只是向上移动。所以我的解决方案是:将工具栏以外的所有内容都包装在单一布局中,然后放入 ScrollView 中。然后工具栏将保留并且页面内容将在您键入时滚动。试试这个代码:

<include
android:id="@+id/app_bar"
layout="@layout/app_bar" />

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/app_bar"
android:fillViewport="true">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="fill_parent">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="@string/second_activity"
android:textColor="#000"/>

<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:ems="10">

<requestFocus/>
</EditText>
</RelativeLayout>
</ScrollView>

关于android - 在焦点 EditText 问题处隐藏工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31254029/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com