我刚接触android,我发现了一个网站,在那里作者正在解释如何构建一个应用程序,并分享了他的代码。但是当我把代码复制到我的android工作室时,我得到了一个错误,当我按alt+enter时,我唯一的选择是“Override resource in other configuration”,但是当我键入代码时,它似乎是正常的。有人能帮我解决吗?代码如下:
<?xml version=â1.0" encoding=âutf-8"?>
<ScrollView android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:android=
xmlns:android="http://schemas.android.com/apk/res/android"âhttp://schemas.android.com/apk/res/android"
xmlns:app=âhttp://schemas.android.com/apk/res-auto"
xmlns:tools=âhttp://schemas.android.com/tools"
android:layout_width=âmatch_parentâ
android:layout_height=âmatch_parentâ>
<LinearLayout xmlns:android=âhttp://schemas.android.com/apk/res/android"
xmlns:app=âhttp://schemas.android.com/apk/res-auto"
xmlns:tools=âhttp://schemas.android.com/tools"
android:layout_width=âmatch_parentâ
android:orientation=âverticalâ
android:background=â@drawable/bgâ
android:layout_height=âmatch_parentâ
tools:context=âcom.example.ekene.blogzone.PostActivityâ>
<ImageButton
android:id=â@+id/imageBtnâ
android:layout_width=âmatch_parentâ
android:layout_height=â250dpâ
android:adjustViewBounds=âtrueâ
android:scaleType=âcenterCropâ
android:src=â@drawable/add_imgâ />
<EditText
android:layout_marginTop=â20dpâ
android:id=â@+id/textTitleâ
android:background=â@drawable/edit_text_stylesâ
android:padding=â10dpâ
android:textColor=â#fffâ
android:textStyle=âboldâ
android:hint=âPost Titleâ
android:layout_marginRight=â5dpâ
android:layout_marginLeft=â5dpâ
android:layout_width=âmatch_parentâ
android:layout_height=âwrap_contentâ />
<EditText
android:background=â@drawable/edit_text_stylesâ
android:padding=â10dpâ
android:layout_marginTop=â20dpâ
android:hint=âPost Descriptionâ
android:textColor=â#fffâ
android:id=â@+id/textDescâ
android:layout_marginRight=â5dpâ
android:layout_marginLeft=â5dpâ
android:layout_width=âmatch_parentâ
android:layout_height=âwrap_contentâ />
<Button
android:layout_marginTop=â30dpâ
android:id=â@+id/postBtnâ
android:textColor=â#fffâ
android:textStyle=âboldâ
android:layout_marginRight=â5dpâ
android:layout_marginLeft=â5dpâ
android:background=â@drawable/action_button_styleâ
android:layout_width=âmatch_parentâ
android:layout_height=âwrap_contentâ
android:text=âPostâ/>
</LinearLayout>
</ScrollView>
谢谢。