*코드로 대체
<HorizontalScrollView
android:contentDescription="그림 가로 스크롤"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/main_page_inner_layout_scroll_youtuber"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="300dp"
android:layout_height="match_parent">
<-- 여기는 내용 들어가면 됨-->
</androidx.constraintlayout.widget.ConstraintLayout>
</LinearLayout>
</HorizontalScrollView>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ScrollView
android:paddingTop="50dp"
android:contentDescription="그림 + 글자 세로 스크롤"
android:id="@+id/main_page_sv_contents"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/main_page_inner_layout_contents"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<-- 여기는 내용 들어가면 됨-->
</LinearLayout>
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
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:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ScrollView
android:id="@+id/main_page_sv_contents"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="그림 + 글자 세로 스크롤"
android:paddingTop="50dp">
<LinearLayout
android:id="@+id/main_page_inner_layout_contents"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="그림 가로 스크롤">
<LinearLayout
android:id="@+id/main_page_inner_layout_scroll_youtuber"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<-- 여기는 내용 들어가면 됨-->
</LinearLayout>
</HorizontalScrollView>
<-- 여기는 내용 들어가면 됨-->
</LinearLayout>
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
추가 벨로그(마크다운 문법)
<details> <summary>접기/펼치기</summary> <!-- summary 아래 한칸 공백 두어야함 --> ## 접은 제목 접은 내용 </details>
- summary 태그 아래 한칸 공백을 두어야한다.
- 공백을 두지 않으면 Markdown 문법이 접은 부분에 적용되지 않는다.