0

我有一个适用于 Android 的应用程序,在一个屏幕中,我们有 2.x 的切换按钮和 4.x 的开关。我能够为 layout-v14 等版本创建布局文件夹,并且布局 xml 工作正常。

我担心的是从编码的角度来看,我希望能够从代码中获取组件(开关或切换按钮)并让它在 API 10 及更高版本中工作。但是,较旧的 API 没有 android.widget.switch。还有其他解决方法吗?否则我将不得不向所有用户显示一个 ToggleButton :(

我为此努力阅读以下内容:

http://www.edumobile.org/android/android-tutorial/switches-example-in-android/

http://developer.android.com/guide/topics/ui/controls/togglebutton.html

4

1 回答 1

0

我想到了。他们都继承自CompoundButton. 所以导入就OK了android.widget.CompoundButton。无需导入ToggleButtonSwitch. 结案。

于 2013-09-07T00:54:29.217 回答