Android复合按钮通过xml文件

时间:2011-11-10 14:24:45

标签: android button android-button

我正在尝试使用android的内置控件CompoundButton,但我没有运气在xml中使用它,这是我的代码

<CompoundButton
    android:id="@+id/mini_recorder_play"
    android:layout_width="40dp"
    android:layout_height="40dp"
    android:layout_weight="1"
    android:background="@drawable/play_d" />

在充气时抛出异常。

1 个答案:

答案 0 :(得分:11)

CompoundButton是一个抽象类,不能直接实例化它。您必须实例化其中一个子类(例如CheckBoxRadioButtonToggleButton)或创建自己的自定义子类,如果这些小部件都不符合您的需求。

HTH