我使用NestedScrollView
进行布局,并且在RecyclerView
内,在Recyclerview
中,我拥有Cardview
并持有ImageButton
。
由于某些原因,运行应用程序时ImageButton
没有显示。
布局代码
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
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.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.world.bolandian.talent.activities.SingleUserProfileActivity">
<com.mikhaellopez.circularimageview.CircularImageView
android:id="@+id/singleCvUserProfile"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_marginStart="0dp"
android:layout_marginTop="80dp"
android:layout_marginEnd="0dp"
android:layout_weight="0"
android:src="@mipmap/ic_launcher"
android:visibility="visible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/frameLayout"
app:layout_constraintTop_toTopOf="parent" />
<com.beardedhen.androidbootstrap.BootstrapWell
android:id="@+id/singleBootstrapWell"
android:layout_width="356dp"
android:layout_height="174dp"
android:layout_gravity="center"
android:layout_margin="8dp"
app:bootstrapSize="xl"
app:layout_constraintTop_toBottomOf="@id/viewDetails"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
tools:layout_editor_absoluteY="248dp">
<TextView
android:id="@+id/singleAboutMe"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textAppearance="@style/TextAppearance.AppCompat" />
</com.beardedhen.androidbootstrap.BootstrapWell>
<android.support.v7.widget.RecyclerView
android:id="@+id/rvSingle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:layout_constraintRight_toRightOf="@id/singleBootstrapWell"
app:layout_constraintLeft_toLeftOf="@id/singleBootstrapWell"
app:layout_constraintTop_toBottomOf="@id/singleBootstrapWell"
tools:listitem="@layout/single_video_item" />
</android.support.constraint.ConstraintLayout>
</android.support.v4.widget.NestedScrollView>
RecyclerView
的列表项为single_video_item
布局代码-singleVideoItem
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="8dp">
<LinearLayout
android:id="@+id/linearLayoutTitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@id/singleIvThumbnailVideo">
android:textAppearance="@style/TextAppearance.AppCompat.Headline"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</LinearLayout>
<LinearLayout
android:id="@+id/LinearLayoutLikesSingle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@id/linearLayout2">
<ImageButton
android:id="@+id/ibLikeSingle"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="center"
android:layout_weight="1"
android:background="@android:color/white"
android:backgroundTint="@color/bootstrap_thumbnail_background"
android:visibility="visible"
app:srcCompat="@mipmap/ic_like_grey" />
<ImageButton
android:id="@+id/ibCommentSingle"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="center"
android:layout_marginStart="12dp"
android:layout_weight="1"
android:background="@android:color/white"
android:backgroundTint="@color/bootstrap_thumbnail_background"
android:visibility="visible"
app:srcCompat="@mipmap/ic_comment" />
<ImageButton
android:id="@+id/ibShareSingle"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="center"
android:layout_marginStart="12dp"
android:layout_weight="1"
android:background="@android:color/white"
android:backgroundTint="@color/bootstrap_thumbnail_background"
android:visibility="visible"
app:srcCompat="@mipmap/ic_share" />
<TextView
android:id="@+id/commentsSingleItem"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_weight="10"
android:gravity="end"
android:paddingRight="16dp"
android:text="Comments"
android:textAlignment="center"
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Widget"
android:visibility="visible" />
</LinearLayout>
</android.support.constraint.ConstraintLayout>
</android.support.v7.widget.CardView>
由于某些原因,ImageButton
没有显示,但是可以触摸。
当我单击按钮区域时,会产生波纹效果,可以单击按钮,但它们不会显示。
这是带有RecyclerView的NestedScrollView的打印屏幕
ImageButtons
未显示
还有另外一个RecyclerView
,但不在NestedScrollView
中,此处显示了ImageButtons
有人知道为什么NestedScrollView
中的ImageButtons
没有显示吗?
答案 0 :(得分:0)
尝试使用从白色到其他颜色的背景色。如果不起作用,请尝试仅使用背景色而不是背景色。它会工作。背景色仅适用于21级以上的API。