마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

레이아웃배치 관련질문입니다 기종에 관계없이

+1 추천

간단한 어플을 하나 개발중인데 버튼을 그림처럼 배치하려고합니다.

마진값주면서 배치했는데 생각해보니 기종디스플레이크기에따라 다르게 보일거같아서 고민입니다.

텍스트크기,버튼크기도 디스플레이크기에따라 유동적으로 변하게 하고싶습니다.

어떻게하면 그림처럼 (기종 크기상관없이)할수있을까요?

layout_weight값 사용해서 해결해보려했는데 쉽지가 않네요

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/LinearLayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/main"
    android:orientation="vertical" >

    <TableLayout
        android:id="@+id/tableLayout1"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <TableRow
            android:id="@+id/tableRow1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="18dp"
            
            android:layout_marginTop="90dp" >

            <Button
                android:id="@+id/order"
                android:layout_width="120dp"
                android:layout_height="wrap_content"
                android:background="@layout/round"
                android:text="제품주문" />

            <Button
                android:id="@+id/manage"
                android:layout_width="120dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="20dp"
                android:background="@layout/round"
                android:text="고객관리" />
        </TableRow>

        <TableRow
            android:id="@+id/tableRow2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="18dp"
            android:layout_marginLeft="30dp"
            android:layout_marginTop="15dp" >

            <Button
                android:id="@+id/blog"
                android:layout_width="120dp"
                android:layout_height="wrap_content"
                android:background="@layout/round"
                android:text="블로그" />

            <Button
                android:id="@+id/homepage"
                android:layout_width="120dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="20dp"
                android:background="@layout/round"
                android:text="홈페이지" />
        </TableRow>

        <TableRow
            android:id="@+id/tableRow3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="18dp"
            android:layout_marginLeft="30dp"
            android:layout_marginTop="13dp" >

            <Button
                android:id="@+id/product_introduce"
                android:layout_width="120dp"
                android:layout_height="wrap_content"
                android:background="@layout/round"
                android:text="제품소개" />
        </TableRow>

        <TableRow
            android:id="@+id/tableRow4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="30dp"
            android:layout_marginTop="13dp" >

            <Button
                android:id="@+id/chunyen_introduce"
                android:layout_width="120dp"
                android:layout_height="wrap_content"
                android:background="@layout/round"
                android:text="소개" />
        </TableRow>
    </TableLayout>

</LinearLayout>

 

간지봉 (420 포인트) 님이 2014년 7월 17일 질문

1개의 답변

0 추천
 
채택된 답변
Noswind (2,330 포인트) 님이 2014년 7월 17일 답변
간지봉님이 2014년 7월 17일 채택됨
감사합니다!설명잘나와있네요 ㅎ
...