facebook twitter hatena line email

「Android/レイアウト/横幅を比率で分割」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==横幅を比率で分割レイアウト== <pre> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent"> <Line...」)
(相違点なし)

2018年12月21日 (金) 19:37時点における版

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

    <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>