1

カスタムメイドのカレンダービューに問題があります。私はcalendar.xmlと呼ばれる次のxmlファイルを持っています。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<Button
    android:id="@+id/next_month_button"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:text="Next" />

<Button
    android:id="@+id/prev_month_button"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:text="Previous" />

<no.blopp.app.views.CalendarView
    android:id="@+id/calendarview"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/next_month_button" />

<TextView
    android:id="@+id/month_of_year_textview"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/prev_month_button"
    android:layout_alignBottom="@+id/prev_month_button"
    android:layout_centerHorizontal="true"
    android:text="September 2012"
    android:textAppearance="?android:attr/textAppearanceMedium" />

</RelativeLayout>

アクティビティでCalendarViewを取得しようとすると、classcastexceptionが発生します。Javaコードは次のとおりです。

public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.calendar);

    calendarView = (CalendarView) findViewById(R.id.calendarview);
    calendarView.setOnCellTouchListener(this);
    }

(コードの上に「privateCalendarView calendarView」を宣言しましたが、コードブロックをコピーしようとすると、コードブロックの表示に何か奇妙なことが起こりました。私は初心者なので、申し訳ありません)。クラスキャスト例外は次の場所でスローされます。

calendarView = (CalendarView) findViewById(R.id.calendarView);

ここで何が間違っているのかわかりません。xmlファイルに問題はありますか?

4

1 に答える 1

0

次のように、XML ファイルでカスタム コンポーネントの名前空間を宣言してみてください。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:mycomponent="http://schemas.android.com/apk/res/replaceWithStringFromPackageAttributeInManifest.xml"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

...

<mycomponent:no.blopp.app.views.CalendarView
    android:id="@+id/calendarview"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/next_month_button" />

...

</RelativeLayout>
于 2012-10-22T13:53:08.203 に答える