gpt4 book ai didi

android - CardView 自定义样式属性

转载 作者:行者123 更新时间:2023-11-29 19:06:08 25 4
gpt4 key购买 nike

我读了很多关于这个东西的其他问题,比如 thisthisthis但没有人为我工作。

我需要创建自定义样式表单 CardView。这是我的代码:

样式.xml

<resources >    
...
<style name="CardViewStyle" parent="CardView">
<item name="app:cardBackgroundColor">#d9edf7</item>
</style>
</resources>

我的名片.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/CardViewStyle">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:id="@+id/txvId"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<TextView
android:id="@+id/txvDatetime"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</LinearLayout>
</android.support.v7.widget.CardView>

在我的应用程序 gradle 文件中

compileSdkVersion 26
minSdkVersion 19
targetSdkVersion 26
implementation 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.android.support:cardview-v7:26.1.0'

这不太可能对我不起作用。没有任何反应,但我没有发现问题所在。如果我不使用自定义样式并直接执行:

我的名片.xml

    <?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:cardBackgroundColor="#d9edf7" >

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:id="@+id/txvId"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<TextView
android:id="@+id/txvDatetime"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</LinearLayout>
</android.support.v7.widget.CardView>

它工作正常。但我需要使用自定义样式。

最佳答案

不要在cardview中设置主题而不是样式

改变这个

android:theme="@style/CardViewStyle"

style="@style/CardViewStyle"

它的工作。

关于android - CardView 自定义样式属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47162439/

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