- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 recyclerview 和一个用于在 recyclerview 中进行过滤的 EditText。我使用 adjustpan 在软键盘上查看 Edittext。当键盘打开时,我的 recyclerview 上升并将第一行削减了将近一半。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativemain"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#fff">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:scaleType="fitXY"
android:layout_below="@+id/include"
android:layout_marginTop="-20dp"/>
<include
android:id="@+id/include2"
layout="@layout/setting_header"/>
<include
android:id="@+id/notifyBlue"
layout="@layout/notify_bluetooth"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/include"
android:layout_alignParentTop="true"/>
<include
android:id="@+id/include"
layout="@layout/header"
android:visibility="visible"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/include2"/>
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="false"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="false"
android:id="@+id/recycleView"
android:visibility="visible"
android:layout_above="@+id/etSearch"
android:padding="5dp"
android:layout_below="@+id/include" />
<ImageView
android:id="@+id/imgbackbutton"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_marginRight="15dp"
android:background="@drawable/circle_purpleforbutton"
android:paddingBottom="5dp"
android:paddingLeft="5dp"
android:paddingRight="4dp"
android:paddingTop="5dp"
android:src="@drawable/menu_button"
android:layout_above="@+id/etSearch"
android:layout_marginBottom="20dp" />
<include
android:id="@+id/rlFooter"
layout="@layout/footer"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
<ProgressBar
android:id="@+id/pBarMain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:visibility="gone"/>
<com.StampWallet.customClasses.FocusClearingEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/etSearch"
android:layout_above="@+id/rlFooter"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:hint="type to search a store"
android:inputType="text"
android:gravity="center_horizontal"
android:background="@android:color/white"
android:paddingLeft="10dp"
android:paddingTop="10dp"
android:paddingRight="10dp"
android:paddingBottom="10dp"
android:textColor="#000"
android:visibility="gone" />
</RelativeLayout>
有什么帮助吗?
最佳答案
我找到了解决方案。我为解决此问题所做的工作。我已将 android:windowSoftInputMode="adjustResize"
添加到我在 list 中的 Activity 中。
并在软键盘打开和关闭时隐藏和显示我的标题和用户信息 View ....
我的用于搜索的 EditText 监听器
etSearch.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean b) {
if (b) {
if (include != null)
include.setVisibility(View.GONE);
if (include2 != null)
include2.setVisibility(View.GONE);
if (notifyView != null)
notifyView.setVisibility(View.GONE);
} else {
if (include != null)
include.setVisibility(View.VISIBLE);
if (include2 != null)
include2.setVisibility(View.VISIBLE);
}
}
});
这解决了我的问题
关于android - Recyclerview 从上边距削减,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38581591/
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 11 年前。 Improve thi
当处理Lua资源时,我们也应该遵循提倡用于地球资源的3R原则——Reduce, Reuse and Recycle,即削减、重用和回收。 削减是最简单的方式。有很多方法可以避免使用新的对象,例如,
我需要进入 linux 的第三列... 我先用最后| cut -d ""-f 3 但它不起作用,之后我教 char 是一个 TAB 并使用 last |剪切-f 2而且它仍然无法正常工作... 我应该
我有这个 PHP 代码: $float"; $float = floatval($float); // Without this line number_format throws a not
所以我遇到了一个我认为常见的困境。我有一个数据库对象,一个来自文档数据库的常规 JS 对象,然后我想将该对象发送到我的客户端。但有些字段是敏感字段,不能透露给客户。 在 C# 世界中,我只需使用声明性
我是一名优秀的程序员,十分优秀!