Card View (Appcompat) 导致应用程序崩溃
Card View (Appcompat) causes app to crash
我正在尝试使用 Android 测验示例,但我想将所有内容放入卡片视图中。我使用了 Android 导航抽屉示例中的卡片视图示例(完全有效)。当 运行 我的应用程序崩溃时。然而,代码中没有显示错误。是什么原因造成的?这是我的代码:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.android.support.wearable.quiz.MainActivity"
tools:ignore="MergeRootFrame">
<LinearLayout android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/read_quiz_from_file_button"
android:text="@string/read_from_file_button"
android:onClick="readQuizFromFile"
android:layout_gravity="center"/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="@string/edit_question"
android:id="@+id/textView2" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/question_text" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/choices_radio_group">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="@string/edit_choice_a"
android:id="@+id/choice_a_radio"
android:checked="true" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="@string/edit_choice_b"
android:id="@+id/choice_b_radio"
android:checked="false" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="@string/edit_choice_c"
android:id="@+id/choice_c_radio" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="@string/edit_choice_d"
android:id="@+id/choice_d_radio" />
</RadioGroup>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/choice_a_text" />
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/choice_b_text" />
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/choice_c_text" />
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/choice_d_text" />
</LinearLayout>
</LinearLayout>
<Button android:id="@+id/add_question"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/add_question"
android:onClick="addQuestion"
android:layout_gravity="center">
</Button>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="@string/quiz_status"
android:id="@+id/quiz_status"
android:paddingTop="30dp"
android:paddingBottom="10dp"
android:visibility="invisible"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/questions_container"
android:orientation="vertical"
android:paddingBottom="10dp">
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/quiz_buttons"
android:layout_gravity="center"
android:visibility="invisible">
<Button android:id="@+id/reset_quiz_button"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/reset_quiz"
android:onClick="resetQuiz">
</Button>
<Button android:id="@+id/new_quiz_button"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/new_quiz"
android:onClick="newQuiz">
</Button>
</LinearLayout>
</LinearLayout>
</ScrollView>
</android.support.v7.widget.CardView>
</FrameLayout>
作为参考,这里是导航抽屉示例卡片视图的代码:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- The CardView needs to be wrapped to ensure spacing is applied correctly. -->
<android.support.v7.widget.CardView
style="@style/Widget.SampleDashboard.Card"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
style="@style/Widget.SampleDashboard.Item"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@android:id/text1"
style="@style/Widget.SampleDashboard.Item.Title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello world" />
<TextView
android:id="@android:id/text2"
style="@style/Widget.SampleDashboard.Item.Description"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v7.widget.CardView>
</FrameLayout>
这是为此发布在博客上的代码:
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- Your card content -->
</android.support.v7.widget.CardView>
如有任何帮助,我们将不胜感激。我是 android 开发的新手。
您已多次定义 android 名称空间引用。命名空间引用应该只在第一个元素上进行。工具名称空间引用也是如此。
xmlns:android="http://schemas.android.com/apk/res/android"
我认为这是您遇到的错误,但很难判断,因为您没有说明错误是什么。
编辑
像这样...
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.android.support.wearable.quiz.MainActivity"
tools:ignore="MergeRootFrame">
如果您想接受,只需添加一个答案。问题是 ClassNotFoundException
,因为未添加 CardView
的 gradle 依赖项。
您可能已经在使用 android 的更新版本(AndroidX 或“Jetpack”),看似最新版本的 RecyclerView 和 CardView“不够新”。
用这个替换卡片视图依赖项:
实施 'androidx.cardview:cardview:1.0.0'
并在卡片视图的 XML 文件中使用此代码段:
androidx.cardview.widget.CardView 而不是 android.support.v7.widget.CardView
我正在尝试使用 Android 测验示例,但我想将所有内容放入卡片视图中。我使用了 Android 导航抽屉示例中的卡片视图示例(完全有效)。当 运行 我的应用程序崩溃时。然而,代码中没有显示错误。是什么原因造成的?这是我的代码:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.android.support.wearable.quiz.MainActivity"
tools:ignore="MergeRootFrame">
<LinearLayout android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/read_quiz_from_file_button"
android:text="@string/read_from_file_button"
android:onClick="readQuizFromFile"
android:layout_gravity="center"/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="@string/edit_question"
android:id="@+id/textView2" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/question_text" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/choices_radio_group">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="@string/edit_choice_a"
android:id="@+id/choice_a_radio"
android:checked="true" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="@string/edit_choice_b"
android:id="@+id/choice_b_radio"
android:checked="false" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="@string/edit_choice_c"
android:id="@+id/choice_c_radio" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="@string/edit_choice_d"
android:id="@+id/choice_d_radio" />
</RadioGroup>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/choice_a_text" />
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/choice_b_text" />
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/choice_c_text" />
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/choice_d_text" />
</LinearLayout>
</LinearLayout>
<Button android:id="@+id/add_question"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/add_question"
android:onClick="addQuestion"
android:layout_gravity="center">
</Button>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="@string/quiz_status"
android:id="@+id/quiz_status"
android:paddingTop="30dp"
android:paddingBottom="10dp"
android:visibility="invisible"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/questions_container"
android:orientation="vertical"
android:paddingBottom="10dp">
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/quiz_buttons"
android:layout_gravity="center"
android:visibility="invisible">
<Button android:id="@+id/reset_quiz_button"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/reset_quiz"
android:onClick="resetQuiz">
</Button>
<Button android:id="@+id/new_quiz_button"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/new_quiz"
android:onClick="newQuiz">
</Button>
</LinearLayout>
</LinearLayout>
</ScrollView>
</android.support.v7.widget.CardView>
</FrameLayout>
作为参考,这里是导航抽屉示例卡片视图的代码:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- The CardView needs to be wrapped to ensure spacing is applied correctly. -->
<android.support.v7.widget.CardView
style="@style/Widget.SampleDashboard.Card"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
style="@style/Widget.SampleDashboard.Item"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@android:id/text1"
style="@style/Widget.SampleDashboard.Item.Title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello world" />
<TextView
android:id="@android:id/text2"
style="@style/Widget.SampleDashboard.Item.Description"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v7.widget.CardView>
</FrameLayout>
这是为此发布在博客上的代码:
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- Your card content -->
</android.support.v7.widget.CardView>
如有任何帮助,我们将不胜感激。我是 android 开发的新手。
您已多次定义 android 名称空间引用。命名空间引用应该只在第一个元素上进行。工具名称空间引用也是如此。
xmlns:android="http://schemas.android.com/apk/res/android"
我认为这是您遇到的错误,但很难判断,因为您没有说明错误是什么。
编辑
像这样...
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.android.support.wearable.quiz.MainActivity"
tools:ignore="MergeRootFrame">
如果您想接受,只需添加一个答案。问题是 ClassNotFoundException
,因为未添加 CardView
的 gradle 依赖项。
您可能已经在使用 android 的更新版本(AndroidX 或“Jetpack”),看似最新版本的 RecyclerView 和 CardView“不够新”。
用这个替换卡片视图依赖项: 实施 'androidx.cardview:cardview:1.0.0'
并在卡片视图的 XML 文件中使用此代码段: androidx.cardview.widget.CardView 而不是 android.support.v7.widget.CardView