본문 바로가기

안드로이드

[안드로이드] 하단에 버튼 고정시키고 가운데에 스크롤 뷰(Scroll View) 만들기

상단, 하단 뷰 고정시키고 가운데 스크롤 뷰 만들기


전체 구성

- Linear Layout (Vertical)

   - 상단에 고정을 원하는 레이아웃 (생략 가능)

   - Scroll View

      - Linear Layout (Vertical)

         - ~원하는 기능 구현~

   - Linear Layout (Horizontal) : 하단에 고정을 원하는 레이아웃 (원하는대로 수정)

      - Button1

      - Button2


Scroll View에서는

layout_width="match_parent"

layout_height="0dp"

layout_weight="1"로 해주고

 

버튼이 들어갈 Linear Layout(하단 고정 레이아웃)의

layout_width="match_parent"

layout_height="wrap_content"로 해주어야 한다.

 

activity_main.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

//상단 고정
    <TextView
        android:id="@+id/textView"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:text="상단 고정"
        android:textSize="20sp"
        android:textColor="@color/black"
        android:gravity="center"/>

//스크롤뷰
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">
 
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical">
       
            ... 기능 구현 ...
 
        </LinearLayout>
    </ScrollView>
 
//하단 고정
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
 
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_margin="10dp"
            android:text="Button1" />
 
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_margin="10dp"
            android:text="Button2"  />
 
    </LinearLayout>
</LinearLayout>
cs
 
 
 

 

완성 모습

상단, 하단 고정 / 가운데 스크롤뷰