- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个显示 RecyclerView 的 fragment ,其中填充了对象数组 - 每个对象 1 个 CardView。我希望我的应用程序显示 5 个 CardView,并在屏幕上显示第 6 个 CardView,而不管大小如何(通过将每个 CardView 的高度设置为整个屏幕高度的 18%)。我目前有这段代码可以将每个 CardView 的高度设置为整个屏幕的 1/6。这种方法的问题是我只能使每个 CardView 的高度为整个屏幕的 1/x,其中 x 只能是一个整数(我希望能够使每个 CardView 的高度成为屏幕高度的自定义百分比只能使其成为屏幕尺寸的 1/3、1/4、1/5 等)。
DisplayMetrics displayMetrics = new DisplayMetrics();
WindowManager wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
Log.i(TAG, "WM " + wm);
Point size = new Point();
Display display = wm.getDefaultDisplay();
display.getSize(size);
int heighty = size.y;
int height = heighty/6; // does not work with doubles because setLayoutParams must be (int)
Log.i(TAG, "height " + heighty + " " + display);
CardView cm = (CardView)view.findViewById(R.id.card);
Log.i(TAG, "cm " + cm);
ViewGroup.LayoutParams params = cm.getLayoutParams();
Log.i(TAG, "params params " + params);
params.height= height;
params.width=MATCH_PARENT;
cm.setLayoutParams(params);
这是我显示的每个 CardView 的 xml 文件
<?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"
app:cardElevation="4dp"
android:id="@+id/card"
app:cardUseCompatPadding="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:weightSum="3"
android:orientation="vertical">
<TextView
android:id="@+id/user_name_iv"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:paddingStart="10dp"
android:paddingEnd="0dp"
android:textColor="#000000"
android:textSize="12sp"
android:layout_weight="0.7"
/>
<TextView
android:id="@+id/user_desc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:paddingStart="10dp"
android:paddingEnd="0dp"
android:textColor="#000000"
android:textSize="12sp"
android:paddingRight="5dp"
android:paddingLeft="5dp"
android:layout_weight="0.7"
/>
<ImageView
android:id="@+id/user_iv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="10dp"
android:paddingRight="5dp"
android:paddingLeft="5dp"
android:contentDescription="@string/image"
android:layout_weight="1.5"/>
</LinearLayout>
我试图更改此实现以在 ConstraintLayout 中使用 LinearLayout,其中 LinearLayout 的高度是整个屏幕的 18%,LinearLayout 实例(ImageView 和 2 个 textView's)的高度是线性布局。我用于该实现的 xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:id="@+id/cardview_id"
android:orientation="vertical"
app:layout_constraintHeight_default="percent"
app:layout_constraintHeight_percent="0.18"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:weightSum="1">
<TextView
android:id="@+id/user_name_iv"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.2"
android:layout_marginBottom="0dp"
android:layout_marginTop="10dp"
android:paddingStart="10dp"
android:paddingEnd="0dp"
android:textColor="#000000"
android:textSize="24sp"
/>
<TextView
android:id="@+id/user_desc"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.2"
android:layout_marginBottom="10dp"
android:layout_marginTop="5dp"
android:paddingStart="10dp"
android:paddingEnd="0dp"
android:textColor="#000000"
android:textSize="14sp"
android:layout_below="@id/user_name_iv"
android:paddingRight="5dp"
android:paddingLeft="5dp"
/>
<ImageView
android:scaleType="centerCrop"
android:id="@+id/user_iv"
android:layout_height="0dp"
android:layout_weight="0.6"
android:layout_width="match_parent"
android:paddingRight="5dp"
android:paddingLeft="5dp"/>
</LinearLayout>
</android.support.constraint.ConstraintLayout>
这使得 RecyclerView 的每个实例都达到我想要的高度(屏幕高度的 18%),但是我的 RecyclerView 使每个单独的实例都指定到一个屏幕,而不是让实例显示在另一个实例的正下方(我知道这是因为 ConstraintLayout 的高度是 match_parent,但是 wrap_content 使内容消失了)。我想知道是否有理想的方法来完成我正在尝试做的事情或能够解决上述问题。
我的 RecyclerView xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/nestedView"
android:fillViewport="true"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</android.support.v4.widget.NestedScrollView>
非常感谢任何帮助,谢谢。
最佳答案
我找到了解决方案。对于遇到此问题并希望得到答案的任何人,我修改了上面的 Java 代码,使每个 cardView 的高度为屏幕高度的任意分数。
DisplayMetrics displayMetrics = new DisplayMetrics();
WindowManager wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
Log.i(TAG, "WM " + wm);
Point size = new Point();
Display display = wm.getDefaultDisplay();
display.getSize(size);
int heighty = size.y;
double heightDouble = heighty/2.5; // this will make the screen display 2 cardview's and have half of the third one peeking. replace 2.5 with any decimal you desire to make your last cardview peek a certain amount
int height = (int) Math.rint(heightDouble);
Log.i(TAG, "height " + heighty + " " + display);
CardView cm = (CardView)view.findViewById(R.id.card);
Log.i(TAG, "cm " + cm);
ViewGroup.LayoutParams params = cm.getLayoutParams();
Log.i(TAG, "params params " + params);
params.height= height;
params.width=MATCH_PARENT;
cm.setLayoutParams(params);
关于android - 将 CardView 的高度设置为屏幕尺寸的自定义百分比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56409633/
当用户按下 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
我是一名优秀的程序员,十分优秀!