将 Eclipse 代码导入 Android Studio 时出现以下错误。我不明白为什么会发生这种情况我已经通过检查 XMLNS 和其他自定义标签尝试了可能的解决方案。
问问题
1233 次
1 回答
2
从样式标记中删除main\res\values\style.xml文件中的所有xmlns:android="http://schemas.android.com/apk/res/android" 。这是示例代码:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppBaseTheme" parent="android:Theme.Light">
</style>
<style name="AppTheme" parent="AppBaseTheme">
</style>
<style xmlns:android="http://schemas.android.com/apk/res/android" name="RadioButton" parent="@android:style/Widget.CompoundButton">
<item name="android:button">@null</item>
<item name="android:padding">5dp</item>
</style>
<style xmlns:android="http://schemas.android.com/apk/res/android" name="EditText" parent="@android:style/Widget.EditText">
<item name="android:textSize">15sp</item>
</style>
</resources>
它应该是这样的:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppBaseTheme" parent="android:Theme.Light">
</style>
<style name="AppTheme" parent="AppBaseTheme">
</style>
<style name="RadioButton" parent="@android:style/Widget.CompoundButton">
<item name="android:button">@null</item>
<item name="android:padding">5dp</item>
</style>
<style name="EditText" parent="@android:style/Widget.EditText">
<item name="android:textSize">15sp</item>
</style>
</resources>
于 2016-08-04T18:14:31.903 回答