- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你好我是 Android 开发的新手,我读过各种线程,它们讨论了 ListView
不应该在 Scrollview
内并且需要包装的事实线性或相对布局。
但是我有这样的布局
<com.itmind.spac.spacapp.custom_extends.CustomScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/scrollViewreceipt"
>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<include
android:id="@+id/include1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout="@layout/toolbar" />
<Spinner
android:id="@+id/customers_spinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:theme="@android:style/Theme.Holo.Light.DarkActionBar"
/>
<Spinner
android:id="@+id/venues_spinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:theme="@android:style/Theme.Holo.Light.DarkActionBar"
/>
<Spinner
android:id="@+id/workgroup_spinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:theme="@android:style/Theme.Holo.Light.DarkActionBar"
/>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minHeight="150dp">
<ListView
android:id="@+id/activityList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="15dp"
android:minHeight="150dp"
/>
</LinearLayout >
<android.gesture.GestureOverlayView
android:id="@+id/signaturePad"
android:layout_width="match_parent"
android:layout_height="80dp"
android:layout_weight="5"
android:background="#d3d3d3"
android:eventsInterceptionEnabled="true"
android:fadeEnabled="false"
android:gestureColor="#333"
android:gestureStrokeLengthThreshold="0.1"
android:gestureStrokeType="multiple"
android:fadeOffset="5000"
android:orientation="vertical" >
</android.gesture.GestureOverlayView>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="testImage"
android:text="testami"/>
</LinearLayout>
这是我的 custoScrollView
public class CustomScrollView extends ScrollView {
private boolean enableScrolling = true;
public boolean isEnableScrolling() {
return enableScrolling;
}
public void setEnableScrolling(boolean enableScrolling) {
this.enableScrolling = enableScrolling;
}
public CustomScrollView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public CustomScrollView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomScrollView(Context context) {
super(context);
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
if (isEnableScrolling()) {
return super.onInterceptTouchEvent(ev);
} else {
return false;
}
}
@Override
public boolean onTouchEvent(MotionEvent ev) {
if (isEnableScrolling()) {
return super.onTouchEvent(ev);
} else {
return false;
}
}
}
我需要自定义类 ScrollView ,因为我可以在触摸时设置启用滚动
所以在我实现 GestureOverlayView.OnGestureListener 的 Activity 中我有:
@Override
public void onGestureStarted(GestureOverlayView overlay, MotionEvent event) {
myScrollView.setEnableScrolling(false);
}
@Override
public void onGestureEnded(GestureOverlayView overlay, MotionEvent event) {
myScrollView.setEnableScrolling(true);
}
元素太多,我需要滚动查看所有元素。在我的 scrollView 中,我有一个 listView,我用从 db 检索的数据填充它。
我的问题是我的 Listview 崩溃了,它显示一行,我看到并滚动到一行。
我尝试使用 min-height
但不起作用,如果我在 Listview
中放置布局高度,我将无法滚动此列表。
我该怎么做?我会在一个长页面中列出一个 View ,所以我必须使用 ScrollView 或者是否有解决方案?
最佳答案
下面给定的自定义 ListView
类将根据 ScrollView
中的内容生成 Listview
的高度。在您的 xml 布局文件中使用它代替 ListView
,就像您使用 CustomScrollView
一样。
public class CustomListView extends ListView {
// private boolean expanded;
public CustomListView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomListView(Context context) {
super(context);
}
public CustomListView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
}
希望对您有所帮助。
注意:-根据this Android 开发者网站的链接,我们不应该将 ScrollView 与 ListView 一起使用,因为 ListView 会处理自己的垂直滚动。
关于android - CustomScrollView 中的 ListView 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38632634/
一个简单的例子是: Scaffold( floatingActionButton: _fab(), floatingActionButtonLocation:
我想要一个 View ,顶部有一个不可滚动的部分,例如图像,底部有一个标签栏,我可以滚动到顶部以显示项目列表并能够在项目列表内滚动。 为此,我使用了一个 CustomScrollView,暂时用一个细
使用 slivers 和 sliver appbar 时出现滚动问题。当视频中不需要滚动时,如何防止 ScrollView 滚动。如果有足够的滚动项,它应该滚动(这很好用) 我关注了这个中等帖子。你可
我正在尝试使用 CustomScrollView 创建一个 ScrollView .我需要的效果,和 this one 非常相似. 我需要 SliverList堆叠在 SliverAppbar 上方,
我正在制作的 UI 通常从一直滚动到底部的 strip 开始,因此它的顶部位于 View 的顶部。而且: 顶部需要一个额外的空白空间,以防用户想要将内容拉下来,这样他们无需将手从手机底部移开就可以拿到
我有一个带有 3 个 child 的 CustomScrollView。我想渲染第三个 child 而不是第二个 child 。 我使用 sliver 是因为我想在 ListView 下方渲染一个框,
我正在构建一个垂直滚动的日历,我已经将我的日子实现为多个 SliverList,这样我就可以在专注于某一天的情况下进行初始化,同时仍然有过去和 future 的日子。 问题是,当 focusDate
用 SliverFillRemaining 包装 TabBarView(像 Expanded 一样填充剩余的空白空间)会产生以下错误输出。 flutter:RenderPositionedBox 需要
我正在尝试创建一个具有 WebView(来自 webview_flutter: ^0.3.5+3)和 AppBar 的屏幕,我想在用户滚动时将其滚动到屏幕外。 我偶然发现了这个 guide并尝试实现类
在我的应用程序中,我使用 CustomScrollView ,当滚动位置到达 ScrollView 几乎结束时应该加载更多数据(当前是 position.pixels - 100.0 )。该机制工作正
我想在 CustomScrollView 中使用动画切换状态,但它抛出错误。 class SliverAnimatedSwitcher extends StatefulWidget { final
我有一个 CustomScrollView 包含一个:- 1- SliverToBoxAdapter 有小部件树 2- SliverList 问题发生在我 Wrap 时SliverList 与 Pag
我是一个刚接触 Flutter 的新手。 我想使用 CustomScrollView 作为 Row/Column Widget 的子级 当 CustomScrollView 是 root 时,它工作得
我正在尝试自动滚动到 CustomScrollView 内的 SliverList 的末尾。 SliverList 本身没有 Controller 属性,因此我必须将 ScrollController
我正在尝试自动滚动到 CustomScrollView 内的 SliverList 的末尾。 SliverList 本身没有 Controller 属性,因此我必须将 ScrollController
你好我是 Android 开发的新手,我读过各种线程,它们讨论了 ListView 不应该在 Scrollview 内并且需要包装的事实线性或相对布局。 但是我有这样的布局
如何在CustomScrollView的底部制作一个按钮固定“粘滞” 如何实现如截图 /image/RDCn9.png 最佳答案 一种方法——使用——BottomNavigationBar @ov
我很难理解 NestedScrollView 和 CustomScrollView 之间的区别? 最佳答案 CustomScrollView - 是使用 Sliver 对象构建任何基于“滚动”的布局的
如何获取在 Flutter CustomScrollView 中可见/滚动的当前 sliver 项目? 我的 CustomScrollView 内部有多个 SliverGrid 和 SliverToB
我正在使用 flutter 来显示一些 html 页面,是否可以在 CustomScrollView 向上滚动时隐藏 appBar?然后我可以有更多的屏幕区域来显示 html 内容。这是我当前的代码片
我是一名优秀的程序员,十分优秀!