gpt4 book ai didi

java - 找不到 Android CalendarView 类

转载 作者:IT老高 更新时间:2023-10-28 21:08:30 26 4
gpt4 key购买 nike

我正在为要在应用程序中使用的日历设计 xml 格式,但我无法让日历显示在 图形布局 淋浴中。

相反,我得到以下“错误”:

The following classes could not be found: - CalendarView (Change to android.widget.CalendarView, Fix Build Path, Edit XML)

此项目的最低 SDK 版本为 14,目标版本为 15。

这是我的 XML 代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >

<RelativeLayout android:id="@+id/top"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button android:id="@+id/dash"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:maxWidth="200dp"
android:maxHeight="10dp"
android:text="DASHBOARD"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_alignParentLeft="true"/>

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:paddingBottom="10px"
android:paddingTop="10px"
android:text="Calendar"
android:textAppearance="?android:attr/textAppearanceLarge"/>
<Button
android:id="@+id/plusButton"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="+"
android:textAppearance="?android:attr/textAppearanceLarge"/>
</RelativeLayout>
<CalendarView
android:id="@+id/calview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/top"
android:maxHeight="300dp" />

<RelativeLayout android:id="@+id/infoScroll"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/calview">

<ScrollView
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:maxHeight="100dp">

<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>

</ScrollView>
</RelativeLayout>
<RelativeLayout android:id="@+id/bottomBar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/infoScroll">
<Button android:id="@+id/todayButton"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"
android:text="Today"
android:textAppearance="?android:attr/textAppearanceSmall"/>

<Button android:id="@+id/listButton"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_toLeftOf="@+id/dayButton"
android:text="List"
android:textAppearance="?android:attr/textAppearanceSmall"/>

<Button android:id="@+id/dayButton"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerInParent="true"
android:text="Day"
android:textAppearance="?android:attr/textAppearanceSmall"/>

<Button
android:id="@+id/monthButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/dayButton"
android:text="Month"
android:textAppearance="?android:attr/textAppearanceSmall"/>

<Button android:id="@+id/PeopleButton"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:text="People"
android:textAppearance="?android:attr/textAppearanceSmall"/>



</RelativeLayout>

</RelativeLayout>

非常感谢!谢谢!

最佳答案

您可能正在 Android Target 16 上预览屏幕。尝试使用 Android Target 15 进行图形布局编辑器(顶部的 Android 图标,在 ADT 20 中)。 Android Target 16 似乎存在问题。

注意:您不需要只需要在图形布局编辑器中设置项目目标。

关于java - 找不到 Android CalendarView 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11365959/

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