- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在第一项 (10) 的上方添加一行?
我正在使用 RecyclerView 和 LinearLayoutManager 来实现我的设计。
activity_main.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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<SeekBar
android:id="@+id/timesTablesSeekBar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:layout_marginEnd="5dp"
android:layout_marginRight="5dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="32dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
list_layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:showDividers="beginning">
<TextView
android:id="@+id/timeTables"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text=""
android:textSize="70px"
android:textStyle="bold|italic" />
</LinearLayout>
最佳答案
首先,使用 LinearLayout 的 android:showDividers
来划分项目并不是最佳实践。首先,我将从您的 list_layout.xml
中删除外部 LinearLayout
,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/timeTables"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text=""
android:textSize="70px"
android:textStyle="bold|italic" />
要显示分隔线,最好的方法是使用RecyclerView.ItemDecoration
。请参阅 DividerItemDecoration
绘制分隔线: https://developer.android.com/reference/androidx/recyclerview/widget/DividerItemDecoration
dividerItemDecoration = new DividerItemDecoration(recyclerView.getContext(),
layoutManager.getOrientation());
recyclerView.addItemDecoration(dividerItemDecoration);
那么唯一缺少的就是绘制顶线。您可以像这样实现自定义 ItemDecoration
:
public class TopLineDecoration extends RecyclerView.ItemDecoration {
private static final int[] ATTRS = new int[]{android.R.attr.listDivider};
private final Drawable divider;
public TopLineDecoration(Context context) {
TypedArray a = context.obtainStyledAttributes(ATTRS);
divider = a.getDrawable(0);
a.recycle();
}
@Override
public void onDraw(@NonNull Canvas c, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
int childCount = parent.getChildCount();
for (int i = 0; i < childCount; i++) {
View child = parent.getChildAt(i);
if (parent.getChildAdapterPosition(child) == 0) {
RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child.getLayoutParams();
int top = child.getTop() - params.topMargin;
int bottom = top + divider.getIntrinsicHeight();
int left = parent.getPaddingLeft();
int right = parent.getWidth() - parent.getPaddingRight();
divider.setBounds(left, top, right, bottom);
divider.draw(c);
}
}
}
}
你的最终实现将是这样的:
dividerItemDecoration = new DividerItemDecoration(recyclerView.getContext(),
layoutManager.getOrientation());
topLineDecoration = new TopLineDecoration(recyclerView.getContext())
recyclerView.addItemDecoration(dividerItemDecoration);
recyclerView.addItemDecoration(topLineDecoration)
关于java - 在 recyclerview 的第一项上添加行分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59077278/
我有以下 XAML 代码,删除了样式和格式标记:
我有下面的板。有一个覆盖( Stack )的 2 x 10 小部件,一些透明的小部件是 DragTargets在它们之上,相同的宽度和高度有 Draggable . Draggable那些是包含图像的
我已经尝试了所有可以在 SO 和其他地方找到的解决方案,但似乎无法弄清楚为什么这不起作用。 将 XML 字符串直接反序列化为一个对象,该对象具有一个属性 - 一个列表: [XmlTypeAttribu
如果我有...... 如何获取对引发 update() 调用的特定选择的引用? 最佳答案 像这样&heres fiddle :
我已经创建了一个自定义的 ListView 适配器/项。该项目包含一个 CheckedTextView 和一个 TextView。 在适配器的 getView() 方法中,创建自定义项并在它返回之前立
我是一名优秀的程序员,十分优秀!