我在回收站视图中创建了名片视图,我的代码运行良好,但是现在的问题是,名片视图在运行时不显示圆角和高程,而是在设计代码中显示。我的代码显示为空
activity_main
% ghci -XMonomorphismRestriction
GHCi, version 8.4.1: http://www.haskell.org/ghc/ :? for help
Prelude> let xs = [23,32,1,3] :: Num a => [a]
Prelude> :t xs
xs :: Num a => [a]
Prelude> map (/12) xs
[1.9166666666666667,2.6666666666666665,8.333333333333333e-2,0.25]
我的 card_view.xml
<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"
tools:context=".Controller.MainActivity">
<uk.co.markormesher.android_fab.FloatingActionButton
android:id="@+id/fab"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:buttonIcon="@drawable/ic_add_group"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/groupListView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="8dp"
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.constraint.ConstraintLayout>
我不知道我做错了什么
答案 0 :(得分:1)
任何人都可能遇到此问题,解决方案非常简单,并且是由错误引起的。backgroundColor
和cardbackgroundColor
之间存在差异。使用setcardbackgroundColor
,它应该可以工作。
答案 1 :(得分:0)
您需要设置
android:background="@android:color/transparent"
设置主约束,并设置
app:cardBackgroundColor="@color/white"
进入卡片浏览,np