카테고리 없음

[Android] Button 가로 정렬

단비_danbee 2020. 11. 10. 15:51
<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="center">

        <Button
            android:id="@+id/button1"
            android:layout_marginTop="10px"
            android:layout_marginBottom="10px"
            android:layout_marginRight="10px"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="그림변경"
            android:textSize="10pt"
            android:onClick="check"
            />

        <Button
            android:id="@+id/button2"
            android:layout_marginTop="10px"
            android:layout_marginRight="10px"
            android:layout_marginBottom="10px"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="문서이동"
            android:textSize="10pt"
            android:onClick="check"
            />

        <Button
            android:id="@+id/button3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10px"
            android:layout_marginBottom="10px"
            android:onClick="check"
            android:text="닫기"
            android:textSize="10pt" />
    </LinearLayout>

 

 

| 출력 결과