我正在尝试使用Android Quiz示例,但我想将所有内容放入卡片视图中。我使用了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开发的新手。
答案 0 :(得分:1)
您可能已经在使用android的更新版本(AndroidX或“ Jetpack”),而RecyclerView和CardView的最新版本似乎“不够新”。
以此替换卡视图依赖项: 实现'androidx.cardview:cardview:1.0.0'
并在XML文件中使用以下代码片段进行名片查看: androidx.cardview.widget.CardView而不是android.support.v7.widget.CardView
答案 1 :(得分:0)
您已多次定义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">
答案 2 :(得分:0)
如果您愿意接受,只需添加答案即可。问题是ClassNotFoundException
,因为未添加CardView
的gradle依赖项。