TextView没有显示在nestedscrollview android中的RecyclerView上方

TextView没有显示在nestedscrollview android中的RecyclerView上方,第1张

概述<?xmlversion="1.0"encoding="utf-8"?><android.support.v4.widget.NestedScrollViewxmlns:android="http://schemas.android.com/apkes/android"xmlns:tools="http://schemas.android.comools"xmlns

<?xml version="1.0" enCoding="utf-8"?> <androID.support.v4.Widget.nestedScrollVIEw    xmlns:androID="http://schemas.androID.com/apk/res/androID"    xmlns:tools="http://schemas.androID.com/tools"    xmlns:app="http://schemas.androID.com/apk/res-auto"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:keepScreenOn="true"    app:layout_behavior="@string/appbar_scrolling_vIEw_behavior"    tools:context="com.tech.world.MainActivity"    tools:showIn="@layout/app_bar_main_activity"    androID:fillVIEwport="true" >    <relativeLayout        androID:layout_wIDth="match_parent"        androID:layout_height="wrap_content"        androID:gravity="center_horizontal"        androID:paddingBottom="@dimen/activity_vertical_margin"        androID:paddingleft="@dimen/activity_horizontal_margin"        androID:paddingRight="@dimen/activity_horizontal_margin"        androID:paddingtop="@dimen/activity_vertical_margin" >        <TextVIEw            androID:ID="@+ID/textVIEw"            androID:textcolor="#43a047"            androID:typeface="serif"            androID:layout_wIDth="fill_parent"            androID:layout_height="wrap_content"            androID:layout_alignParenttop="true"            androID:text="@string/app"            androID:gravity="center"            androID:textStyle="bold"            androID:textSize="15sp" />        <androID.support.v7.Widget.RecyclerVIEw            xmlns:androID="http://schemas.androID.com/apk/res/androID"            androID:ID="@+ID/recyclervIEw"            androID:layout_wIDth="fill_parent"            androID:layout_height="wrap_content"            androID:layout_below="@+ID/textVIEw"            androID:layout_margintop="10dp"            androID:divIDer="@color/colorAccent"            androID:divIDerHeight="1dp" /></relativeLayout> </androID.support.v4.Widget.nestedScrollVIEw>

现在上面的textvIEw没有显示,我必须向下滚动才能看到textvIEw,我也使用了工具栏,它可以在协调器布局中扩展和联系
app:layout_behavior =“ @ string / appbar_scrolling_vIEw_behavior”

我想确保textvIEw在开始时可见,而无需滚动查看

解决方法:

将androID:focusableIn@R_419_5985@Mode =“ true”设置为回收者视图的父级布局,即您的相对布局.

选中此post.

总结

以上是内存溢出为你收集整理的TextView没有显示在nestedscrollview android中的RecyclerView上方全部内容,希望文章能够帮你解决TextView没有显示在nestedscrollview android中的RecyclerView上方所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1091124.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存