콘텐츠 플레이어
- BottomSheet 로 수정 - 콘텐츠 url 생성 api
This commit is contained in:
@@ -35,10 +35,10 @@
|
||||
android:id="@+id/iv_creator_profile"
|
||||
android:layout_width="26.7dp"
|
||||
android:layout_height="26.7dp"
|
||||
android:layout_marginTop="21dp"
|
||||
android:contentDescription="@null"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/iv_creator_follow"
|
||||
app:layout_constraintStart_toStartOf="@+id/tv_title"
|
||||
app:layout_constraintTop_toTopOf="@+id/iv_creator_follow"
|
||||
app:layout_constraintTop_toBottomOf="@+id/tv_title"
|
||||
tools:src="@mipmap/ic_launcher" />
|
||||
|
||||
<TextView
|
||||
@@ -54,16 +54,6 @@
|
||||
app:layout_constraintTop_toTopOf="@+id/iv_creator_profile"
|
||||
tools:text="닉네임" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_creator_follow"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="21dp"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/btn_follow_big"
|
||||
app:layout_constraintEnd_toEndOf="@+id/tv_title"
|
||||
app:layout_constraintTop_toBottomOf="@+id/tv_title" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="240dp"
|
||||
android:layout_height="wrap_content"
|
||||
@@ -71,7 +61,7 @@
|
||||
app:layout_constraintBottom_toTopOf="@+id/sb_progress"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/iv_creator_follow">
|
||||
app:layout_constraintTop_toBottomOf="@+id/iv_creator_profile">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_cover"
|
||||
@@ -79,28 +69,6 @@
|
||||
android:layout_height="240dp"
|
||||
android:contentDescription="@null"
|
||||
tools:src="@drawable/img_compleate_book" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="13.3dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_like_heart"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/ic_heart_eee" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_comment"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="13.3dp"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/ic_message_square_eee" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<SeekBar
|
||||
@@ -157,17 +125,6 @@
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="@+id/iv_play_or_pause" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_prev_15"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/ic_player_prev_15"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/iv_play_or_pause"
|
||||
app:layout_constraintEnd_toStartOf="@+id/iv_play_or_pause"
|
||||
app:layout_constraintStart_toEndOf="@+id/iv_skip_back"
|
||||
app:layout_constraintTop_toTopOf="@+id/iv_play_or_pause" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_skip_forward"
|
||||
android:layout_width="wrap_content"
|
||||
@@ -178,17 +135,6 @@
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="@+id/iv_play_or_pause" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_next_15"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/ic_player_next_15"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/iv_play_or_pause"
|
||||
app:layout_constraintEnd_toStartOf="@+id/iv_skip_forward"
|
||||
app:layout_constraintStart_toEndOf="@+id/iv_play_or_pause"
|
||||
app:layout_constraintTop_toTopOf="@+id/iv_play_or_pause" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_playlist"
|
||||
android:layout_width="wrap_content"
|
||||
|
@@ -65,6 +65,16 @@
|
||||
<item name="android:background">@drawable/bg_top_round_corner_16_7_222222</item>
|
||||
</style>
|
||||
|
||||
<style name="FullScreenBottomSheetDialogTheme" parent="Theme.MaterialComponents.BottomSheetDialog">
|
||||
<item name="bottomSheetStyle">@style/FullScreenBottomSheetStyle</item>
|
||||
</style>
|
||||
|
||||
<style name="FullScreenBottomSheetStyle" parent="Widget.Design.BottomSheet.Modal">
|
||||
<item name="behavior_peekHeight">0dp</item>
|
||||
<item name="android:layout_height">match_parent</item>
|
||||
<item name="android:layout_width">match_parent</item>
|
||||
</style>
|
||||
|
||||
<style name="AlarmDayCheckBox">
|
||||
<item name="android:button">@null</item>
|
||||
<item name="android:background">@drawable/alarm_day_checkbox_selector</item>
|
||||
|
Reference in New Issue
Block a user