0
我是剛接觸android並試圖學習一些基本的東西,我的問題是如果我將這行android:layout_gravity="center"
粘貼到默認的「activity_main.xml」文件中我在標題中出現錯誤但如果我刪除該行,錯誤消失!解析XML時出錯:未綁定的前綴
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.helloworld.MainActivity" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:textSize="70dp"
android:layout_height="wrap_content"
andriod:layout_gravity="center"
android:text="@string/hello_world"
/>
</RelativeLayout>
我感謝所有幫助