- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何制作正方形CardView
.
当我设置 layout_weight
在 CardView
它不像 CardView
上的正方形.
请给我一个解决方案:(没有设置固定的高度和宽度)
见下图:
代码:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2"
android:weightSum="3">
<android.support.v7.widget.CardView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="4dp"
android:layout_weight="2"
app:cardBackgroundColor="@color/silver"
tools:ignore="NestedWeights">
</android.support.v7.widget.CardView>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical"
android:weightSum="1">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="4dp"
android:layout_weight="0.5"
app:cardBackgroundColor="@color/silver">
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="4dp"
android:layout_weight="0.5"
app:cardBackgroundColor="@color/silver">
</android.support.v7.widget.CardView>
</LinearLayout>
</LinearLayout>
最佳答案
您可以使用 ConstraintLayout
而不是多个 LinearLayout
与重量。
添加
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
build.gradle
.然后你可以尝试类似的方法(将 dimensionRatio 设置为 1):
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="4dp">
<android.support.v7.widget.CardView
android:id="@+id/card1"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintDimensionRatio="1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/no_picture" />
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/card2"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="4dp"
app:layout_constraintBottom_toTopOf="@id/card3"
app:layout_constraintDimensionRatio="1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/card1"
app:layout_constraintTop_toTopOf="@id/card1">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/no_picture" />
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:id="@+id/card3"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="4dp"
app:layout_constraintBottom_toBottomOf="@id/card1"
app:layout_constraintDimensionRatio="1"
app:layout_constraintEnd_toEndOf="@id/card2"
app:layout_constraintStart_toStartOf="@id/card2"
app:layout_constraintTop_toBottomOf="@id/card2">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/no_picture" />
</android.support.v7.widget.CardView>
</android.support.constraint.ConstraintLayout>
关于android - 如何制作方形 CardView (Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51437259/
当用户按下 FAB 时,一个 cardview 被添加到 recyclerview。每个卡片 View 内都有一个复选框。我想这样做,以便当用户勾选特定卡片 View 中的复选框时,该特定卡片 Vie
我有一个 CardView inside 另一个 CardView,但是 child CardView周围没有阴影。知道为什么吗?
我发现 CardView 的影子有非常奇怪的行为。我刚开始开发一个应用程序,绝对没有任何业务逻辑或类似的东西。但无论如何…… 我只是在 fragment 布局中添加了几个 View ,然后发现每次屏幕
我有一个 CardView,里面有一些圆角半径,它是三个相对布局。当我设置顶部与 CardView 顶部对齐的布局背景时,圆角半径丢失。 如何保持圆角半径? 代码:
在我更新了我的 android studio 3.3 并将我的项目迁移到 androidx 工件后,我的卡片 View 高程停止工作并显示阴影。
我正在使用 CardView 在可滚动 GridLayout 中显示我的 ImageView 。但是,当我转到“设计”选项卡时,它看起来很好,但当我在设备上运行时,它看起来不同。 在布局上它显示为 当
这是代码 fragment : 这是最终结果: 我想要的是嵌套圆角半径的外观,它也会影响 ImageView。我已经为两个卡片 View 提供了 corner
一个简单的问题,我使用 CardView 向 Button 添加高度,但是在分配 cardElevation 时,CardView 在内部绘制了一个框本身,我尝试切换海拔和其他属性,我可以通过增加 c
我想在点击卡片 View 时添加链式 react ,奇怪的是它没有出现? 这里可能出了什么问题? //我有一个线性布局,在 cardview 中有三个 textview。 回收 View :
我是 android 的新手,使用 Kotlin 编写应用程序并使用 Anko 生成 View 。 我想使用 cardView 的 anko 版本,但 android studio 以红色突出显示错误
我的卡片 View 中有两个 ImageView ,现在如何设置 OnClickListeners 以便我可以知道在哪个卡片 View 中选择了哪个按钮。 im1 和 im2 是我的可点击 Image
我在编辑包含 Relativelayout 的 Cardview 中的 RelativeLayout 时搞砸了! ConstraintLayout 会将相对布局的 wrap_content 更改为 0
我想弄清楚如何在创建并传递 CardView 后修改某个 ImageView 或 TextView 小部件到主 RecyclerView。 所以我的代码如下: 首先是保存项目的类: public c
我在 CardView 中有一个 RecyclerView 但我有问题,我在 RecyclerView 底部有 2 个按钮,所以我把它们放在RelativeLayout 的末尾并给它们 parent_
如何在下面的屏幕截图中将 cardview 放在父级 cardview 之上? 当我将图像放入 CardView 时导致我的视图损坏 正确的观点必须是: 我的 xml 布局:
我正在尝试实现 this图书馆。此处编写的示例代码是用 Kotlin 编写的,但我的项目是用 Java 编写的,因此我尝试将代码从 Kotlin 转换为 Java。但是我收到以下错误: android
这是上下文中卡片 View 的布局: 我只希望图标 (imageview) 可以点击。这个 card
我有一个卡片 View ,里面有一个 ListView 。我也需要 ListView 中的点击项,我也希望能够使用 ontouchlistener 移动整个卡片 View 。我在卡片 View 上设置
我正在制作一个项目,但是当我编译我的项目并在 Android Studio 上启动应用程序时,我的应用程序崩溃了。 在我的 Logcat 错误中 Process: com.passionategeek
当我弄清楚 Material 样式时,我错过了必须为卡片 View 添加支持库依赖项的部分。相反,我使用了一个简单的标签。 它没有引发错误,甚至设计预览也显示了其中的卡片。但是当我在 Android
我是一名优秀的程序员,十分优秀!