Eclipse コードを Android スタジオにインポートしているときに、以下のエラーが発生します。XMLNS やその他のカスタム タグをチェックして、考えられる解決策を既に試しました。
質問する
1233 次
1 に答える
2
Remove all xmlns:android="http://schemas.android.com/apk/res/android" in your main\res\values\style.xml file from style tag. Here is is the sample code:
<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>
It should be like this:
<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 に答える