gpt4 book ai didi

android - SDK 19 及以下版本无法识别 android.support.v7.widget.CardView ,错误膨胀类

转载 作者:太空宇宙 更新时间:2023-11-03 10:38:49 25 4
gpt4 key购买 nike

在我的 Xml 文件中我有 cardView

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_height="wrap_content"
android:paddingLeft="4dp"
android:paddingRight="4dp"
android:paddingBottom="2dp">

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:foreground="?android:attr/selectableItemBackground"
android:id="@+id/channel_cardview"
app:cardBackgroundColor="@android:color/white"
app:cardElevation="2dp"
app:cardMaxElevation="2dp"
app:cardUseCompatPadding="true">

.... some other elements here
</RelativeLayout>

当我在 SDK 23 上运行我的应用程序时,它运行良好,但是当我在 SDK 19 或 SDK 16 上运行它时,它无法运行并抛出此错误:

E/AndroidRuntime: FATAL EXCEPTION: main
android.view.InflateException: Binary XML file line #10: Error inflating class <unknown>
at android.view.LayoutInflater.createView(LayoutInflater.java:613)
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:687)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
at pb.pocketboard.ChannelFragment$ChannelsAdapter.onCreateViewHolder(ChannelFragment.java:578)
at pb.pocketboard.ChannelFragment$ChannelsAdapter.onCreateViewHolder(ChannelFragment.java:537)
at android.support.v7.widget.RecyclerView$Adapter.createViewHolder(RecyclerView.java:5482)
at android.support.v7.widget.RecyclerView$Recycler.getViewForPosition(RecyclerView.java:4707)

错误指向行号。 10 属于cardViewCLass,也许系统无法识别 Cardview 类,所以我搜索了相关问题,发现问题不是添加依赖项,但我已经添加了它

我的 Gradle :

dependencies {

compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.mikhaellopez:circularimageview:2.1.1'
compile 'com.isseiaoki:simplecropview:1.0.16'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.android.support:cardview-v7:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile('com.github.afollestad.material-dialogs:core:0.8.5.3@aar') {
transitive = true
}
compile files('libs/commons-io-2.4.jar')
}

我正在膨胀布局的 java 类

    @Override
public ChannelsViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {

View rowView = inflater.inflate(R.layout.custom_channel_row, parent, false); // error is here
ChannelsViewHolder holder = new ChannelsViewHolder(rowView , this);

return holder;
}

知道为什么会这样吗??

最佳答案

Lollipop 版新增CardView。当您尝试使用 RecyclerView(或 API 20 (v5.0) 或更高版本中添加的任何其他 View )时,也会出现同样的问题。尽管它们已添加到支持库中。

现在,一旦您想到为什么将它们添加到支持库中?

这是因为开发人员可以在旧版本的 android 手机中使用它们而不是因为开发人员可以在旧版本的 SDK 中使用它们。基本上,开发人员总是会在更新的 SDK 上开发应用程序。

我想这可能是我的原因:)

关于android - SDK 19 及以下版本无法识别 android.support.v7.widget.CardView ,错误膨胀类 <unknown>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38157385/

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