gpt4 book ai didi

android - 深色主题 CardView 周围的白色边框

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:21:20 25 4
gpt4 key购买 nike

我有一个扩展 CardView 的自定义控件。我将它添加到线性布局中,以便创建卡片网格。我没有使用 ListView 或 RecyclerView。

我想在线性布局中的卡片之间设置一个间隙,所以我定义了一个边距。

卡片布局使用深色主题。我的应用程序使用默认的 Material 主题(深色)。我正在 Pixel C、Android 6.0.1 上进行测试。

<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="15dp"
android:layout_marginEnd="15dp"
card_view:cardUseCompatPadding="true"
card_view:cardPreventCornerOverlap="false"
card_view:cardElevation="5dp"
style="@style/CardView.Dark">
<!-- content here -->
</android.support.v7.widget.CardView>

我将它们添加到 ListView 中:

LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(TableRow.LayoutParams.FILL_PARENT,
TableRow.LayoutParams.WRAP_CONTENT);
LinearLayout newLinearLayout = new LinearLayout(this);
newLinearLayout.setLayoutParams(layoutParams);
newLinearLayout.setOrientation(LinearLayout.HORIZONTAL);

mainLayoutContainer.addView(newLinearLayout);
newLinearLayout.addView(myCardLayoutObj);

使用 CardView 布局的类实际上扩展了 CardView 本身,例如

public class MyCustomWidgetextends CardView{
public MyCustomWidget(Context context) {
super(context);

LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = layoutInflater.inflate(R.layout.my_card_view_layout, this);
}

我看到的是这个。卡片内容部分看起来不错..深色。但是 CardView 周围的边距/间隙是白色的。我如何让它变得透明,为什么暗卡主题会这样?另外,阴影在像这样的深色主题上会是什么样子?

enter image description here

最佳答案

所以我有一个包含 <CardView> 的布局文件如上所述。我的扩展此布局的自定义类扩展了 CardView。所以,我在 CardView 中有一个 CardView。 “外部”卡片 View ,即我的自定义类扩展的 View ,从未设置过主题,因此它使用默认的“浅色”主题。

因为我是以编程方式创建这个小部件,所以我认为我需要扩展 CardView。这是错误的。

之前:

public class MyCustomWidget extends CardView

之后:

public class MyCustomWidget extends LinearLayout{
public MyCustomWidget(Context context) {
super(context);

LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = layoutInflater.inflate(R.layout.my_card_view_layout, this);

关于android - 深色主题 CardView 周围的白色边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35800771/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com