- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 CoordinatorLayout 和 CollapsingToolbar 以及 SoftInputMode。当我尝试在协调器布局中使用 android:fitsSystemWindows="false"时。它运作良好。但是,SoftInputMode 不工作。这意味着当 EditText 处于 Activity 状态时,布局必须调整大小。我将 SOftInputMode 添加到 list 文件中。但是,它不起作用。
问题是当 android:fitsSystemWindows="false"时,状态栏背景不工作。但是,布局大小调整效果很好。
同样,当 android:fitsSystemWindows="true"时,状态栏背景效果很好。但是,布局调整大小不起作用。
我的布局代码是
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
app:statusBarBackground="@color/myCustomColor"
android:theme="@style/AppThemeCorrdinate"
android:fitsSystemWindows="false"
tools:context="com.uiresource.messenger.Conversation">
<android.support.design.widget.AppBarLayout
android:id="@+id/htab_appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/my_gradient_bg"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay"
app:expanded="false">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsetoolbar"
android:layout_width="match_parent"
android:layout_height="330dp"
android:fitsSystemWindows="true"
app:contentScrim="@drawable/my_gradient_bg"
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"
app:titleEnabled="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v4.app.FragmentTabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingBottom="@dimen/activity_vertical_margin">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0" />
<FrameLayout
android:id="@+id/realTabContent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
</android.support.v4.view.ViewPager>
</LinearLayout>
<TabWidget
android:id="@android:id/tabs"
style="@style/MyTabStyle"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_gravity="bottom"
android:layout_weight="0"
android:orientation="horizontal"
android:showDividers="none"
android:visibility="gone" />
</android.support.v4.app.FragmentTabHost>
</LinearLayout>
<HorizontalScrollView
android:id="@+id/chipscrollview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:fitsSystemWindows="true"
android:scrollbars="none">
<RadioGroup
android:id="@+id/radiogroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_gravity="bottom"
android:orientation="horizontal"
android:scrollbars="none">
</RadioGroup>
</HorizontalScrollView>
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0"
android:background="@android:color/black"
android:fitsSystemWindows="true"
app:layout_collapseParallaxMultiplier="1.0" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_gravity="top"
android:layout_marginBottom="0dp"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme.PopupOverlay">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:src="@drawable/user1" />
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|center_vertical"
android:gravity="center"
android:textAllCaps="false"
android:textAppearance="@style/Light"
android:textColor="@android:color/white"
android:textSize="@dimen/h1" />
</android.support.v7.widget.Toolbar>
<android.support.design.widget.TabLayout
android:id="@+id/htab_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:visibility="gone"
app:tabIndicatorColor="@android:color/white"
app:tabSelectedTextColor="@android:color/white"
app:tabTextColor="@color/white" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/add_to_cart_fab2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:src="@android:drawable/ic_menu_save"
android:visibility="gone"
app:layout_anchor="@id/toolbar"
app:layout_anchorGravity="bottom|right" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/add_to_cart_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:src="@android:drawable/ic_menu_save"
android:visibility="gone"
app:layout_anchor="@id/htab_appbar"
app:layout_anchorGravity="bottom|center" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/root_layout"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true"
>
<RelativeLayout
android:id="@+id/rootView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/rl_bottom">
<LinearLayout
android:id="@+id/layout_rvh"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/chaty_bg"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:clipToPadding="false"
android:overScrollMode="never"
android:paddingTop="8dp"
android:paddingBottom="20dp" />
</LinearLayout>
</RelativeLayout>
<RelativeLayout
android:id="@+id/rl_bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:fitsSystemWindows="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="vertical">
<HorizontalScrollView
android:id="@+id/hsv_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@color/white"
android:gravity="bottom"
android:scrollbars="none"
android:visibility="visible">
<LinearLayout
android:id="@+id/chat_quick_area"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<include
layout="@layout/rich_replies_card"
android:visibility="visible" />
</LinearLayout>
</HorizontalScrollView>
<RelativeLayout
android:id="@+id/editContent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/hsv_content"
android:background="#E9EDED"
android:paddingLeft="@dimen/space10"
android:paddingTop="@dimen/space5"
android:paddingRight="@dimen/space5"
android:paddingBottom="@dimen/space5">
<ImageButton
android:id="@+id/bt_send"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerInParent="true"
android:layout_centerVertical="true"
android:background="@drawable/bg_btnsend_rounded"
android:gravity="center"
android:padding="@dimen/space5"
android:src="@drawable/baseline_send_white_36"
android:stateListAnimator="@null"
android:textAppearance="@style/Light"
android:textColor="@color/white"
android:textSize="@dimen/h3" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginRight="@dimen/space5"
android:layout_toLeftOf="@id/bt_send"
android:background="@drawable/bg_white_rounded">
<ImageButton
android:id="@+id/bt_attachment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:background="@android:color/transparent"
android:padding="@dimen/space10"
app:srcCompat="@drawable/ic_attachment" />
<EditText
android:id="@+id/et_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/bt_attachment"
android:background="@android:color/transparent"
android:hint="Enter your message"
android:inputType="textCapSentences"
android:maxLines="3"
android:padding="@dimen/space10"
android:textAppearance="@style/ThemeOverlay.AppCompat.Dark"
android:textColor="@color/colorTextBlack"
android:textColorHint="@color/colorTextHint"
android:textSize="@dimen/h2" />
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:visibility="gone"
android:gravity="bottom">
</LinearLayout>
</android.support.design.widget.CoordinatorLayout>
最佳答案
1.去掉android:fitsSystemWindows="false",因为它会导致布局滚动。在Android 4.x上2.通过设置样式来改变状态栏的颜色。
关于android - 如何使用 CoordinatorLayout 和 windowSoftInputMode 更改状态背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53487959/
是否可以将 windowSoftInputMode 的两个值设置为 adjustResize 和 adjustPan 最佳答案 据我正确理解这些模式,它们是相互排斥的。第一个调整您的布局大小,以便为键
尽管这个问题在stackoverflow中有很多解决方案,但我还是无法解决我的问题。我在屏幕上有两个编辑文本,一个在顶部,另一个附在屏幕底部。每当我点击底部编辑文本时,软键盘就会出现在它上面。我已经玩
我已经在多个 Activity 中成功实现了 AdjustResize,但特别是一个 Activity 在显示键盘时仍然拒绝执行任何操作,除了平移。 知道我做错了什么吗? 我正在像这样使用 xamar
我的 Android 应用程序的主要 Activity 如下所示: 为了确保键盘弹出时
android:windowSoftInputMode 通常设置在一个 Activity 上,但我将所有内容设置为一个 Activity,它切换到不同的 Fragments 以支持 Tab 键,我需要
我想在 Activity 启动时打开软键盘,我发现了 android:windowSoftInputMode="stateVisible" 不起作用。 为了确定,我创建了一个新项目(默认的“Hello
我有一个愚蠢的问题,请按照下面的图片 当我点击 Enter Email 时,它如下图所示, 现在,尽管使用了 android:windowSoftInputMode="adjustPan" andro
list 文件中 Activity 的 XML 属性 android:windowSoftInputMode 可用。是否有针对相同属性的任何相关 Java 方法? 为了获得相同的功能,我尝试了 Inp
我想实现的功能是让 editview 位于 softinput keyboard 之上,而不让 edittext 闪烁(Google plus 的 edittext 有 somekind 闪烁)。 使
我知道在这方面关于 SO 也有类似的问题。但我完全无能为力。 我有一个多行编辑文本,它被放置在 LinearLayout 中的几个元素之后。而且在输入文字的时候,是隐藏的。 解决方案是在 list 文
考虑以下 View 示例: 并在 list 文件中: android:windowSoftInputMode="adjustPan" onfocus edittext,软键盘像
我有一个使用这种布局的人造对话框: 我在 中放置了一个 fragment 取决于正在打开的对话框 - 控制对话框的 Activity 如下所示: 不幸的是,当您单击对话框内的
和很多人一样,我遇到了软输入覆盖我的发送按钮的问题,所以我进行了一些搜索,发现解决这个问题的公认方法是 "android:windowSoftInputMode="stateAlwaysHidden|
我有一个要求,其中我有一个 MainActivity。从这个 Activity 中,我实例化了 4 个 fragment (让我们说 FragmentA、FragmentB、FragmentC、Fra
在聊天应用程序中,我有一个以图像作为背景的 Activity 。现在,当我输入一条消息以发布手机键盘时,当我在 list 文件中使用 windowSoftInputMode="adjustResize
我知道这里有很多与 Android 中的虚拟键盘相关的内容,但我似乎无法弄清楚如何解决我的问题。 对于那些不熟悉 AdjustPan 和 AdjustResize 的人,您可以在此处查看它们是什么/做
我的 Activity 有一个顶栏和一个底栏。顶栏和底栏之间的空间我有一个线性布局,里面有几个编辑 TextView 。因为我不希望每次出现软键盘时都调整布局大小,所以我在 list 中为我的 Act
我正在构建一个将在 Android 设备上使用的网站应用程序。目前,当软键盘出现时,浏览器会挤压页面。我宁愿让它向上滚动页面。 我读过 android:windowSoftInputMode 的属性A
我正在尝试使用 CoordinatorLayout 和 CollapsingToolbar 以及 SoftInputMode。当我尝试在协调器布局中使用 android:fitsSystemWindo
属性android:windowSoftInputMode="adjustPan"已在AndroidManifest.xml 中指定,但仅在第一次有效。 第二次在屏幕上显示软件键盘时,它完全隐藏了我的
我是一名优秀的程序员,十分优秀!