2014-12-30 3 views
0

나는 안드로이드를 처음 접했고 기본적인 것들을 배우려고 노력하고있다.이 줄을 붙이면 내 문제가 생긴다. 을 기본 "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>
나는

답변

0

귀하의 오류가

대신

andriod:layout_gravity 

쓰기

,691 간단 어떤 도움을 주셔서 감사합니다
android:layout_gravity 
관련 문제