2

各行の下部にボタンがある2列のチェックボックス(テーブルレイアウトではない)を取得しようとしています。問題は、これを行うと、ボタン(最初の列)がチェックボックスに自動的にタイプキャストされているように見えることです。しかし、2列目にボタンを入れても何も悪いことはないようです。私に問題を与えているその最初のコラム

以下の設定はクラッシュしません(ただし、両方のボタンは各列に1つではなく、2番目の列にありますが、もちろんこれは私が望むものではありません)。

<LinearLayout
       android:layout_width="match_parent"
       android:layout_height="0dp"
       android:orientation="horizontal"
       android:layout_weight="1.7"
       android:layout_marginTop="5dp"
       android:background="@drawable/table_layout_bg" 
       >


         <LinearLayout
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="fill_parent"
            android:orientation="vertical"
            android:paddingTop="15dp"
            android:paddingBottom="20dp"
            android:paddingLeft="20dp">

            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/American_chkBX"  android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/Asian_chkBX"     android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/BarPub_chkBX"    android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/Breakfast_chkBX" android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/Desert_chkBX"    android:layout_width="fill_parent"/>


            </LinearLayout>

            <LinearLayout
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="fill_parent"
            android:orientation="vertical"
            android:paddingTop="15dp"
            android:paddingBottom="20dp">

            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/FastFood_chkBX" android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/Healthy_chkBX" android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/Italian_chkBX" android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/Mexican_chkBX" android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/SeaFood_chkBX" android:layout_width="fill_parent"/>   

            <Button
                android:id="@+id/select_none_btn"
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:background="@drawable/select_none"
                />  

            <Button
                android:id="@+id/select_all_btn"
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:background="@drawable/select_all"
                />
            </LinearLayout>



     </LinearLayout>

この代替設定では、以下に示すエラーログが表示されてアプリがクラッシュします(ボタンがチェックボックスとして型キャストされているようですが、試してみませんか??)。私はこのエラーが本当に奇妙だと思っており、これを引き起こすために私が理解していないandroid / xml/UIの基本的な部分があるかどうかを知りたいと思いました。

<LinearLayout
       android:layout_width="match_parent"
       android:layout_height="0dp"
       android:orientation="horizontal"
       android:layout_weight="1.7"
       android:layout_marginTop="5dp"
       android:background="@drawable/table_layout_bg" 
       >

   <LinearLayout
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="fill_parent"
            android:orientation="vertical"
            android:paddingTop="15dp"
            android:paddingBottom="20dp"
            android:paddingLeft="20dp">

            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/A_chkBX"  android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/B_chkBX"     android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/C_chkBX"    android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/D_chkBX" android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/E_chkBX"    android:layout_width="fill_parent"/>

            <Button
                android:id="@+id/select_all_btn"
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:background="@drawable/select_all"
                />
            </LinearLayout>

            <LinearLayout
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="fill_parent"
            android:orientation="vertical"
            android:paddingTop="15dp"
            android:paddingBottom="20dp">

            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/A1_chkBX" android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/B1_chkBX" android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/C1_chkBX" android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/D1_chkBX" android:layout_width="fill_parent"/>
            <CheckBox android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/E1_chkBX" android:layout_width="fill_parent"/>    

            <Button
                android:id="@+id/select_none_btn"
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:background="@drawable/select_none"
                />  
            </LinearLayout>
 </LinearLayout>

そして、生成される関連ログは次のとおりです。

03-26 22:21:30.279: E/AndroidRuntime(1473): FATAL EXCEPTION: main
03-26 22:21:30.279: E/AndroidRuntime(1473): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.dumbasssoftware/com.dumbasssoftware.mainstuff.PickerViewActivity}: java.lang.ClassCastException: android.widget.Button cannot be cast to android.widget.CheckBox
03-26 22:21:30.279: E/AndroidRuntime(1473):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1956)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1981)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at android.app.ActivityThread.access$600(ActivityThread.java:123)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at android.os.Handler.dispatchMessage(Handler.java:99)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at android.os.Looper.loop(Looper.java:137)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at android.app.ActivityThread.main(ActivityThread.java:4424)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at java.lang.reflect.Method.invokeNative(Native Method)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at java.lang.reflect.Method.invoke(Method.java:511)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at dalvik.system.NativeStart.main(Native Method)
03-26 22:21:30.279: E/AndroidRuntime(1473): Caused by: java.lang.ClassCastException: android.widget.Button cannot be cast to android.widget.CheckBox
03-26 22:21:30.279: E/AndroidRuntime(1473):     at com.dumbasssoftware.mainstuff.PickerViewActivity.onCreate(PickerViewActivity.java:708)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at android.app.Activity.performCreate(Activity.java:4465)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
03-26 22:21:30.279: E/AndroidRuntime(1473):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920)
03-26 22:21:30.279: E/AndroidRuntime(1473):     ... 11 more
4

2 に答える 2

3

この問題は、一部のウィジェットがIDを保持するが、タイプ(クラス)を変更する方法でレイアウトXMLファイルを変更する場合に発生する可能性があります。

私の推測では、Rクラスは正しく、Eclipse/Androidプラグインによって自動的に再構築されていません。

修正は、プロジェクトを手動で強制的にクリーンアップして再構築することです。

于 2013-03-26T22:58:54.400 に答える
1

「importcom.rey.material.widget.CheckBox;」を使用します 「importandroid.widget.CheckBox;」の代わりに それは私のために働いた

于 2020-06-10T21:21:30.793 に答える