facebook twitter hatena line email

「Android/UIScrollView」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==スクロールのレイアウト== <ScrollView android:layout_width="match_parent" android:layout_height="match_parent" android:fillViewport="true">...」)
 
(スクロールのレイアウト)
 
行1: 行1:
 
==スクロールのレイアウト==
 
==スクロールのレイアウト==
 +
<pre>
 
<ScrollView
 
<ScrollView
 
     android:layout_width="match_parent"
 
     android:layout_width="match_parent"
行12: 行13:
 
                 android:orientation="vertical">hoge</LinearLayout>
 
                 android:orientation="vertical">hoge</LinearLayout>
 
</ScrllView>
 
</ScrllView>
 +
</pre>
  
 
android:fillViewport="true"をつけるとLinearLayoutの大きさに従って広がるっぽい。
 
android:fillViewport="true"をつけるとLinearLayoutの大きさに従って広がるっぽい。

2019年9月12日 (木) 17:24時点における最新版

スクロールのレイアウト

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true">
            <LinearLayout
                android:id="@+id/hogeLayout"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_gravity="center_horizontal"
                android:gravity="center_horizontal"
                android:orientation="vertical">hoge</LinearLayout>
</ScrllView>

android:fillViewport="true"をつけるとLinearLayoutの大きさに従って広がるっぽい。