- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在回收站 View 中使用了一个 item.xml,但文本超出了屏幕。我试图依靠这个 answer ,
You can avoid all of this by giving each
textview
a width of match_parent and an appropriate layout_weight.
但我觉得很困惑,因为我不确定
width="0"
应该实现。
我的 item.xml:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/productLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="@dimen/product_recycler_view_margin">
<ImageView
android:id="@+id/photoIV"
android:layout_width="@dimen/product_image_size"
android:layout_height="@dimen/product_image_size"
android:scaleType="centerCrop"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="@dimen/product_image_size"
android:orientation="vertical"
android:gravity="top"
android:layout_marginStart="@dimen/product_details_margin_left"
app:layout_constraintStart_toEndOf="@+id/photoIV"
app:layout_constraintTop_toTopOf="@id/photoIV">
<TextView
android:id="@+id/titleTV"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Top"
android:textStyle="bold"
android:textSize="@dimen/product_details_title" />
<TextView
android:id="@+id/descriptionTV"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/product_details_margin_middle"
android:text="Bottom"
android:textSize="@dimen/product_details_description_text_size" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
有一张图片,右边是标题和描述。标题和描述都从屏幕上消失了:
我的 fragment 中显示它的回收站 View (如果重要的话):
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/productsRV"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:layout_marginTop="16dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
最佳答案
问题是,您只定义了 LinearLayout 的左约束,而没有定义右约束。
所以你需要添加正确的约束。您还需要将此处的宽度替换为 0dp,因为 0 在此上下文中表示“匹配约束”。
<LinearLayout
android:layout_width="0dp"
android:layout_height="@dimen/product_image_size"
android:orientation="vertical"
android:gravity="top"
android:layout_marginStart="@dimen/product_details_margin_left"
app:layout_constraintStart_toEndOf="@+id/photoIV"
app:layout_constraintTop_toTopOf="@id/photoIV"
app:layout_constraintEnd_toEndOf="parent">
//编辑:match_parent
因为 ConstraintsLayouts 根本不支持宽度和高度标识符。
关于android - 回收站 View 项目中的文本超出屏幕范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60262496/
@ 目录 原理 创建过滤器 使用过滤器 查询 删除 恢复
我在回收站 View 中使用了一个 item.xml,但文本超出了屏幕。我试图依靠这个 answer , You can avoid all of this by giving each textvi
我的应用程序中有一个回收站 View 。每个回收器 View 项都有一个 imageView。我使用 asyncTask 加载位图并将它们添加到磁盘缓存,然后再将它们设置到 onPostExecute
我已经多次问过这个类似的问题,我花了 2 周多的时间才试图找出解决方案。是的,我知道有多个类似的问题,但我问的原因是因为堆栈上流的解决方案都不起作用。我是 Android 开发的初学者,因此我问你请帮
有谁知道允许特定角色的用户查看 Sitecore 回收站中所有项目的解决方案? 目前,只有管理员可以查看所有已删除的项目。用户只能看到他们已删除的项目。 最佳答案 没有开箱即用的方法,SqlArchi
您好,我有以下回收器适配器: package com.example.app.adapters; import android.annotation.TargetApi; import android
我看不到回收 View ,不确定哪里出了问题。如果你能帮助我,那就太好了。 fragment public class CallDurationFragment extends Fragment {
我是 android 开发的新手。我有一个带有 Viewholder 的 recyclerview 用于显示照片。我在我的应用程序中实现了 like 功能,但我面临的唯一问题是当我添加一个 喜欢 在照
我正在编写一个消息传递应用程序,在 RecyclerView 中显示我的消息和其他消息。 白色背景消息是我的消息,彩色消息是其他消息。 当每条消息顺序为“我的消息,其他消息,...”时,回收站 Vie
我创建了一个包含不同类型 subview 的社交帖子回收 View 。每个 child 多个 layout.recyclerview 工作正常,唯一的问题是 recyclerview 滚动不流畅。 我
我有一个像这样的 View 模型 - private val viewState = SchoolsViewState() fun onViewOpened() = Trans
我正在研究 Android 的应用程序接近完成它但我在 recyclerView 中发现了问题,我不知道如何在 recyclerView 的 Item 的 TextView 上实现点击监听器? (当我
我正在做一个 RecyclerView 示例。问题是,当我在列表中添加第一个项目时,它会在回收 View 中正确显示该项目,但我添加的下一个项目不会显示在回收 View 中。 请帮帮我。 适配器代码是
我想问一下我如何从适配器回收器 View 调用 Activity 中的方法。 在函数 buildRecyclerView 中设置适配器: private void buildRecyclerView(
这个问题在这里已经有了答案: Custom Adapter getView() method is not called (6 个答案) 关闭 6 年前。 我正在使用回收站 View ,但它没有显示
我有一个回收站 View ,我在其中显示了自定义行,但该行未填满宽度。我已经添加了 match_parent 宽度,但它仍然只是包装内容。 我的回收站 View -:
我一直在使用回收器 View 在我的 fragment 上显示 15 张图像。图像位于可绘制文件夹中。我尝试了外部 View 来执行此操作,但速度要慢得多并且滞后很多。因此我使用回收者 View 来解
我的问题是我希望回收站 View 响应对整个 View 的点击,而不是对回收站 View 具有的每个项目的单独点击 viewModel.handleClick()}"
以下是我的行项目的布局:
我正在处理 Recycler View ,在这里我将三个回收器 View 水平放置在布局中。问题是第二个和第三个回收器 View 项目显示但无法滚动,即使在内部使用嵌套滚动并特此附加xml。请建议我如
我是一名优秀的程序员,十分优秀!