/ / Android CalendarView वर्ग नहीं पाया जा सकता है - जावा, Android, ग्रहण, कैलेंडरव्यू

एंड्रॉइड कैलेंडरव्यू क्लास नहीं मिला - जावा, एंड्रॉइड, एक्लिप्स, कैलेंडरव्यू

Im एक ऐप में इस्तेमाल होने वाले कैलेंडर के लिए xml प्रारूप तैयार कर रहा है, लेकिन मुझे यह दिखाने के लिए कैलेंडर नहीं मिलता है चित्रमय लेआउट शॉवर।

इसके बजाय मुझे निम्नलिखित "त्रुटि" मिलती है:

निम्नलिखित कक्षाएं नहीं मिल सकीं: - CalendarView (Android.widget.CalendarView में बदलें, पथ को ठीक करें, XML को संपादित करें)

इस परियोजना के लिए मिनट एसडीके संस्करण 14 है और इसका लक्ष्य संस्करण 15 है।

मेरा यहाँ है एक्सएमएल कोड:

<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>

बहुत सराहना की! धन्यवाद!

उत्तर:

उत्तर № 1 के लिए 42

आप एंड्रॉइड टार्गेट 16 पर अपनी स्क्रीन का पूर्वावलोकन कर रहे होंगे। ग्राफिक लेआउट एडिटर के लिए एंड्रॉइड टार्गेट 15 (शीर्ष पर एंड्रॉइड आइकन, ADV 20 में) का उपयोग करने का प्रयास करें। ऐसा लगता है कि Android लक्ष्य 16 के साथ समस्या है।

नोट: आप डॉन "t चित्रमय लेआउट संपादक में सिर्फ परियोजना लक्ष्य निर्धारित करने की आवश्यकता है।