modal bottom sheet (인스타그램)
material design의 modal bottom sheet을 사용하고 있습니다.
그런데 위의 사진처럼 텍스트 위의 저 공백을 어떻게 없애고 싶은데 방법을 찾지 못하고 있습니다ㅠㅠ 혹시 material design에서 modal bottom sheet 을 사용해보셨던 분 중에 해결 방법을 아시는 분 있을까요?
아래는 제 코드입니다.
modal_bottom_sheet_content.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/layout_post_delete"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:orientation="vertical"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<TextView
style="@style/Size16.Black"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="다른 앱 게시..." />
<TextView
android:id="@+id/tv_post_share"
style="@style/Size16.Black"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="공유하기..." />
<TextView
style="@style/Size16.Black"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="링크 복사" />
<TextView
style="@style/Size16.Black"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="보관" />
<TextView
android:id="@+id/tv_delete_post"
style="@style/Size16.Black"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="삭제" />
<TextView
style="@style/Size16.Black"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="수정" />
<TextView
style="@style/Size16.Black"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="좋아요 수 숨기기" />
<TextView
style="@style/Size16.Black"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="댓글 기능 해제" />
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
자체 해결하였습니다.
위의 LinearLayout 안에
이 코드 넣음으로 텍스트뷰가 위에 잘 붙었습니다. 이유는 아직 잘 모르겠으나 혹시나 같은 문제로 고통받는 분을 위해 글 남겨놓습니다