2

我正在尝试使用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" />

它在膨胀时抛出异常。

4

1 回答 1

11

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

高温高压

于 2011-11-10T14:33:17.420 回答