반응형
수평 스크롤 뷰(HorizontalScrollView)는 스크롤 뷰와 거의 같다
💡하지만 다른점이 있음
스크롤 뷰 : 수직 방향으로 스크롤 가능
수평 스크롤뷰 : 수평 방향으로 스크롤 가능
❕❗수평 스크롤뷰도 스크롤 뷰와 같이 오직 한 개의 뷰만을 포함할 수 있다.
[HorizontalScrollView.xml]
<?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<TextView
android:layout_width="200dp"
android:layout_height="match_parent"
android:text="1"
android:background="@color/cancle_red" />
<TextView
android:layout_width="200dp"
android:layout_height="match_parent"
android:background="@color/yello" />
<TextView
android:layout_width="200dp"
android:layout_height="match_parent"
android:background="@color/sky_sumin" />
<TextView
android:layout_width="200dp"
android:layout_height="match_parent"
android:background="@color/orange_june" />
</LinearLayout>
</HorizontalScrollView>
설명 : 수평 스크롤뷰는 하나의 뷰만 포함한다는 특성 때문에 TextView뷰들을
LinearLayout으로 한번 감싸서 하나의 뷰로 나타 냈다.
스크롤뷰가 궁금하신 분은
2021.10.23 - [Tools/Android Studio] - [ Android Studio ] 안드로이드 스크롤뷰 (ScrollView)
반응형
'Tools > Android Studio' 카테고리의 다른 글
[Android Studio] 안드로이드 스튜디오 (Android Studio) 프로젝트 자동 열기 해제 (0) | 2021.10.26 |
---|---|
[ Android Studio ] 간편 데이터 저장 SharedPreferences 사용 방법 (0) | 2021.10.26 |
[ Android Studio ] 안드로이드 스크롤뷰 (ScrollView) (0) | 2021.10.23 |
[ Android Studio] 안드로이드 스튜디오(Android Studio) 액션바(action Bar) 없애는 방법! 타이틀바 없애는 방법 (2) | 2021.10.21 |
[ Android Studio ] 안드로이드스튜디오 설치 방법 (1) | 2021.10.16 |