我目前正在使用sudo pip3 install --upgrade matplotlib
sudo apt-get update
标题部分和1
内容部分制作RecyclerView。
n
但有时候,我没有任何内容,我想要显示一条消息,说“"抱歉,您现在没有任何内容" - 或类似的东西。但我希望这条信息能够集中在剩余的空间中。
__________________
| HEADER |
|----------------|
| CONTENT_1 |
|----------------|
| CONTENT_2 |
|----------------|
| |
| |
| |
|________________|
我将如何实现这样的目标?我似乎无法解决这个问题,所以现在我正在使用一个固定高度的占位符信息 - 这是我不想拥有的。
__________________
| HEADER |
|----------------|
| |
| |
| |
| NO_CONTENT_MSG |
| |
| |
| |
|________________|
答案 0 :(得分:0)
创建类似
的内容<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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"
android:focusableInTouchMode="true"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="81dp">
<TextView
android:id="@+id/infotv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="No content here"
android:textSize="25sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/newsA"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
>
</android.support.v7.widget.RecyclerView>
</android.support.constraint.ConstraintLayout>
在您的代码中,如果您有内容
infoTV.setVisibility(View.INVISIBLE);
如果你没有内容
infoTV.setVisibility(View.VISIBLE);