facebook twitter hatena line email

Android/レイアウト/横幅を比率で分割

提供: 初心者エンジニアの簡易メモ
2018年12月21日 (金) 19:37時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==横幅を比率で分割レイアウト== <pre> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent"> <Line...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

横幅を比率で分割レイアウト

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="0.7"
                android:gravity="center_horizontal"
                android:orientation="vertical">

                <TextView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="hogehoge1" />

            </LinearLayout>
            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="0.3"
                android:gravity="center_horizontal"
                android:orientation="vertical">
                <TextView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="hogehoge2" />
            </LinearLayout>
        </LinearLayout>

    </ScrollView>