- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在回收站 View 中创建了一个卡片 View ,我的代码运行良好,但现在的问题是卡片 View 在运行时不显示圆边和高程,但它显示在设计代码中。我的代码如下所示
activity_main
<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>
我的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="wrap_content">
<android.support.v7.widget.CardView
android:id="@+id/groupCardView"
android:layout_width="match_parent"
android:layout_height="128dp"
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="24dp"
app:cardCornerRadius="10dp"
app:cardElevation="5dp"
app:cardUseCompatPadding="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent">
<TextView
android:id="@+id/groupTitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:text="Trips"
android:textAlignment="center"
android:textSize="30sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
</android.support.v7.widget.CardView>
我不知道我做错了什么
最佳答案
任何人都可能遇到这个问题,解决方法很简单,由错误引起。backgroundColor
和 cardbackgroundColor
是有区别的。使用 setcardbackgroundColor
它应该可以工作。
关于java - cardview 不显示 cornerRadius 和高程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53177005/
我需要用我自己的可绘制对象替换默认的 Switch 拇指。为此,我使用了 android:thumb 属性,它运行良好,减去拇指下方的阴影不再存在。如何在保持拇指阴影/高度的同时使用自定义拇指可绘制对
我正在为我们的顶点项目创建一个 Android 应用程序。我正在使用 API 23。我在我的工具栏和其他组件上添加了高度,但没有出现阴影。我的主题毁了它吗?
我正在使用来自 this answer 的代码.我试图在折叠时禁用工具栏的提升。我尝试将 android:elevation="0dp" 放入所有 xml 标签,但没有成功。有什么建议吗? 最佳答案
在我的应用程序中,当我尝试使用“ map 高程 API”获取高程时,我得到的答案看起来像中文答案。我的要求是: My request 通过以下代码查询API返回的结果: try
我们如何向 map 添加带有高程标签的等高线图层?我发现了这个:https://www.mapbox.com/blog/satellite-map-with-contours/ , 但它没有显示如何。
我尝试在 android 上创建自己的自定义加载对话框。那没问题,但是对话框在出现时会产生非常难看的阴影 我尝试使用默认颜色主题化我的 android 而不是我自己的。我尝试设置一个透明的窗口背景并将
我已经创建了这样的 AppBar 布局 它在 LinearLayout 中起作用并转换阴影: 但是当我把它放到 CoordinatorLayout 中时,阴影消失了:
我想在 Jetpack compose 中为我的图标添加阴影,以便图像和文本具有(大致)相似的阴影。 Text( text = "HAS SHADOW", style = Materi
我正在寻找一种方法来为 matplotlib 获取适合高程的颜色图。 cmap 'terrain' 看起来不错,但颜色缩放不是基于零(即,如果比例为 0->5000m,则 0->1000m 范围可能是
这看起来是一项非常基本的任务,但我无法解决它。 PyEphem 文档: http://rhodesmill.org/pyephem/radec.html 描述了如何以相反的方式执行转换,从 Body
我是一名优秀的程序员,十分优秀!