0

Android 앱을 개발하는 데 익숙합니다. 4 개의 EditText에 해당하는 4 개의 TextView가 있습니다. 그러나 EditTexts에 문제가 있습니다. 제대로 맞지 않습니다. 어떻게하면됩니까? 다음은 내 XML 레이아웃 파일입니다. 제발 저를 도우십시오. 무엇이 잘못 되었나요? 미리 감사드립니다. 모든 글고 치기위한 레이아웃에Gridlayout의 UI 구성 요소가 제대로 맞지 않아서 해당 컴포넌트가 맞지 않습니다.

<LinearLayout 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:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 
android:paddingBottom="@dimen/activity_vertical_margin" 
tools:context="com.example.mobilecoursemanagementsystem.AddCourseActivity" 
android:orientation="vertical"> 

<GridLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:rowCount="5" 
    android:columnCount="3"> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Course Title" 
     android:layout_column="0" 
     android:layout_row="0" 
     android:id="@+id/txtTitle"/> 
    <!--android:layout_marginTop="10dp"--> 

    <EditText 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_column="1" 
     android:layout_row="0" 
     android:layout_marginTop="10dp" 
     android:id="@+id/editTitle" /> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_column="0" 
     android:layout_row="1" 
     android:layout_marginTop="10dp" 
     android:text="Course Code" 
     android:id="@+id/txtCode"/> 

    <EditText 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_column="1" 
     android:layout_row="1" 
     android:layout_marginTop="10dp" 
     android:id="@+id/editCode" /> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_column="0" 
     android:layout_row="2" 
     android:layout_marginTop="10dp" 
     android:text="Number of Student" 
     android:id="@+id/txtNumberOfSts"/> 

    <EditText 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_column="1" 
     android:layout_row="2" 
     android:layout_marginTop="10dp" 
     android:id="@+id/editNumberOfSts" /> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_column="0" 
     android:layout_row="3" 
     android:layout_marginTop="10dp" 
     android:text="Course Level" 
     android:id="@+id/txtLevel"/> 

    <EditText 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_column="1" 
     android:layout_row="3" 
     android:layout_marginTop="10dp" 
     android:id="@+id/editLevel" /> 
</GridLayout> 
</LinearLayout> 

click for Screenshoot

답변

0

사용자 layout_margins 당신이

+0

불행하게도 마진 원하는대로 값

android:layout_marginRight="10dp" 

세트를, 그것은, 어떤 변화 :( –

+0

를 작동하지 않았다 완전하게 작동하지 않았다, 나는 이해하지 않는다. –

관련 문제