- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
您好,我有两个 recyclerView 和一个底 View 。当我在 recyclerView 中单击一个项目时,应该会出现一个带有 editText 的弹出窗口。当我触摸 editText 时,键盘被触发,线性布局被推高。我不想向上推键盘应该在屏幕上方可见的布局。
XML代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="match_parent"
android:isScrollContainer="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/relative_layout"
android:orientation="vertical">
<include layout="@layout/app_toolbar" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/margin_1dp"
android:background="@color/black_color_10_percent" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black_color_2_percent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/tool_tip_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:background="@color/color_white"
android:gravity="center_vertical"
android:padding="5dp">
<TextView
android:id="@+id/text_view_user_tool_tip_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="@dimen/margin_10dp"
android:layout_toLeftOf="@+id/image_view_remove_tool_tip"
android:gravity="center|left"
android:singleLine="true"
android:textColor="@color/icon_un_selected_color"
android:textSize="@dimen/text_size_12dp" />
<ImageView
android:id="@+id/image_view_remove_tool_tip"
android:layout_width="@dimen/margin_24dp"
android:layout_height="@dimen/margin_24dp"
android:layout_alignParentRight="true"
android:layout_gravity="right|center_vertical"
android:layout_marginRight="@dimen/margin_10dp"
android:background="@drawable/circle_grey_bg"
android:padding="@dimen/margin_6dp"
android:src="@drawable/ic_close_white_24dp" />
</RelativeLayout>
<android.support.v7.widget.CardView
android:id="@+id/card_view_your_suggestions"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
app:cardBackgroundColor="@color/light_grey_color"
app:cardCornerRadius="0dp"
app:cardElevation="0.5dp"
app:cardMaxElevation="1dp"
app:cardPreventCornerOverlap="true"
app:cardUseCompatPadding="true"
app:contentPaddingBottom="0dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="@dimen/margin_40dp"
android:background="@color/color_grey"
android:gravity="center|left"
android:paddingLeft="@dimen/margin_12dp"
android:text="@string/text_your_selections"
android:textColor="@color/black_color_87_percent"
android:textSize="@dimen/text_size_14dp" />
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view_your_selection_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none" />
</LinearLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/card_view_suggestions"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="@dimen/margin_6dp"
android:layout_weight="3"
android:background="@android:color/white"
app:cardCornerRadius="0dp"
app:cardElevation="0dp"
app:cardMaxElevation="1dp"
app:cardPreventCornerOverlap="true"
app:cardUseCompatPadding="true"
app:contentPaddingBottom="0dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="@dimen/margin_40dp"
android:background="@color/color_grey"
android:gravity="center|left"
android:paddingLeft="@dimen/margin_12dp"
android:text="@string/text_your_suggestions"
android:textColor="@color/black_color_87_percent"
android:textSize="@dimen/text_size_14dp" />
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view_your_suggestion_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:fadeScrollbars="false"
android:scrollbarThumbVertical="@drawable/scrollbar_thumb"
android:scrollbarTrackVertical="@drawable/scrollbar_track"
android:scrollbars="vertical" />
</LinearLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="@dimen/margin_8dp"
android:layout_weight="1.1"
android:visibility="gone"
app:cardBackgroundColor="@color/light_grey_color"
app:cardCornerRadius="0dp"
app:cardElevation="0dp"
app:cardMaxElevation="1dp"
app:cardPreventCornerOverlap="true"
app:cardUseCompatPadding="true"
app:contentPaddingBottom="0dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="@dimen/margin_40dp"
android:background="@color/colorPrimaryDark"
android:gravity="center|left"
android:paddingLeft="@dimen/margin_12dp"
android:text="@string/text_add_new"
android:textColor="@color/black_color_87_percent"
android:textSize="@dimen/text_size_14dp" />
<abihealth.emrappabi.widgets.MyCustomTextView
android:id="@+id/text_view_add_new_element"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/margin_8dp"
android:background="@drawable/edit_text_bg"
android:maxLines="1"
android:paddingLeft="@dimen/margin_8dp" />
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
</RelativeLayout>
</LinearLayout>
<RelativeLayout
android:id="@+id/relative_layout"
android:layout_width="match_parent"
android:layout_height="@dimen/margin_40dp"
android:layout_alignParentBottom="true"
android:background="@color/color_grey">
<LinearLayout
android:id="@+id/add_new_phrase_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/margin_6dp"
android:background="@android:color/white"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/margin_6dp"
android:src="@drawable/icon_add_drawable" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center|left"
android:paddingLeft="@dimen/margin_2dp"
android:text="@string/text_add_phrase"
android:textColor="@color/black_54_percent"
android:textSize="@dimen/text_size_14dp" />
</LinearLayout>
</RelativeLayout>
</RelativeLayout>
最佳答案
添加到 list 中的 Activity ,这对我有用
<activity
...
android:windowSoftInputMode="adjustNothing">
</activity>
关于android - 带有 RecyclerView 的 LinearLayout 在键盘显示时会缩小吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47868023/
我有一个 LinearLayout,上面有几个 View 。所以我想要实现的是复制这个 LinearLayout 并在某个时候使用它。但是,当我对原始 LinearLayout 执行更改(例如方法 r
我试着做一个像这样的简单布局 仅显示第一个 TextView(“hello”)。我做错了什么? 最佳答案 制作内部布局wrap_content的l
我想构建某种 Twitter 应用程序。在 DashboardActivity 中,我需要在每次单击“发布”按钮时添加一个状态框。我的仪表板 xml 如下所示: -->header
我试图在另一个 LinearLayout 中插入一个 LinearLayout。我不知道我的做法对不对。 我需要在不使用通货膨胀的情况下尝试这种方式。 LinearLayout addre
我的 Android UI 中只有一个 ImageView 和一个 TextView。目前 TextView 与 ImageView 在同一个 LinearLayout 中,因此文本有时会跑到 2 行
我正在尝试让“播放”图标的图像显示在我在 LinearLayout 中的列表项的右侧。 但是,由于某种原因,图像出现在
我有两个 LinearLayout 结构如下。 问题是第二个 LinearLayout (id=goi) 没有按预期显示。我尝试将顶部布局更改为 Relativ
我以编程方式创建了很多 LinearLayout 并将它们放在另一个 LinearLayout 上: public void loadList(){ LinearLayout linearLa
我想创建按钮 1 到 9,并且我想循环执行此操作。但在每 3 个计数中,我想创建一个新的 LinearLayout。 final LinearLayout[] ll2 = new LinearLa
我需要创建 X 个 linearLayout - 每个 linearLayout 包含文本(项目名称)、位图(项目位图图像)。 因此,我创建了一些 for 循环来创建动态 linearLayout 和
您好,我是 Android 开发的初学者。我制作了一个 LinearLayout 以美观的方式显示不同的信息。我想要一个带有 ScrollView 的屏幕,我可以在其中添加任意数量的 LinearLa
我是 Android 编程的新手,我正在尝试设置一个包含四个组件的 LinearLayout。 目前看起来是这样的: XML:
首先,这是我的 activity_main.xml 文件的结构: 相对布局 线性布局 fragment (谷歌地图) 线性布局 搜索栏 TextView 图片按钮 我试图将第二个线性布局(不包含 ma
我正在创建一个自定义复合布局,它由一个可点击的水平 LinearLayout 组成,其中包含一个 ImageView 和两个 TextView。最终,我希望能够使用单个字段引用整个内容,并根据用户 A
我在 main.xml 中有一个 LinearLayout: 我制作了另一个 XML 文件,名为 item_box.xml: 基本上,我想通过代码(以编程方式
我有一个 LinearLayout,它应该包含一个项目列表(每个项目都是一个 LinearLayout)。 问题是子项目 (LinearLayouts) 没有显示在另一个下面:只有第一个是可见的。 这
下午好 我正在尝试像这样进行倒计时: 为此,我制作了两个水平的 LinearLayout,一个用于数值,另一个放置在下方,用于标签,例如“DAYS”或“HOURS”。 我的目标是在数值中间对齐标签,如
我得到了这个应用程序(顺便说一句,它和完成的一样好),我需要在其中动态地将 LinearLayout View 添加到 LinearLayout 容器。它的工作方式是用户在 EditText 中写一些
在 Udacity Android 初学者类(class)之后,我想向 list_item View 添加一个音频图标按钮。现在 list_item.xml 有一个父级水平线性布局和一个嵌套的垂直线性
我得到了一个相对布局,其中包含另一个我用来替换“标题”的相对布局,一个稍后用作“控制面板”的线性布局,以及一个 horizontalScrollView,其中 horizontalScroll
我是一名优秀的程序员,十分优秀!