我的 xml 中有一个来自第三方库的元素。假设它是一个名为“SuperButton”的特定按钮:
<com.library.SuperButton
android:id="@+id/my_super_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
我的项目应该在 Android 2.1 上运行,但我的 SuperButton 仅适用于 Android 2.2 及更高版本 (Froyo)。我应该在我的 xml 中添加什么以确保在 Android 2.1 上忽略 SuperButton(因此不显示;并且不会使应用程序崩溃......)?
谢谢 !!!