Skip to content

Commit

Permalink
Merge pull request #14 from Gwamegis/fix/scrollTab
Browse files Browse the repository at this point in the history
탭 뷰 스크롤 이슈
  • Loading branch information
JIWON1923 authored Apr 21, 2023
2 parents d3ffe18 + 9140513 commit e2b7d44
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 13 deletions.
3 changes: 0 additions & 3 deletions app/src/main/java/com/soi/moya/HomeFragment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@ class HomeFragment : Fragment() {
mainBanner.setImageResource(mainBannerImageSrc)
mainBanner.clipToOutline = true

// val selectedTeam = arguments?.getString("selectedTeam")
// fetchColor(selectedTeam!!)

// setting Tab view
viewModel = ViewModelProvider(requireActivity())[MusicViewModel::class.java]

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottomNavigationView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_height="56dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_play_song.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
android:text="song Title"
android:fontFamily="@font/pretendard_bold"
android:textColor="@color/gray"
android:textSize="20sp"
android:textSize="20dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_select_team.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
android:layout_margin="20dp"
android:text="어느 팀을 응원하시나요?"
android:fontFamily="@font/pretendard_bold"
android:textSize="20sp"
android:textSize="20dp"
android:textColor="@color/custom_black"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_stadium_detail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
android:text="stadium title"
android:fontFamily="@font/pretendard_bold"
android:textColor="@color/black"
android:textSize="20sp"
android:textSize="20dp"
android:textStyle="bold"
android:gravity="center"
android:layout_margin="20dp"
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/fragment_search.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
android:text="선수 이름, 응원가를 검색해주세요"
android:textColor="@color/darkGray"
android:fontFamily="@font/pretendard_medium"
android:textSize="16sp"
android:textSize="16dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="30dp"
Expand All @@ -45,7 +45,7 @@
android:text="검색 결과가 없어요"
android:textColor="@color/darkGray"
android:fontFamily="@font/pretendard_medium"
android:textSize="16sp"
android:textSize="16dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="30dp"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_stadium.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="야구장 좌석 배치도"
android:textSize="20sp"
android:textSize="20dp"
android:textStyle="bold"
android:gravity="center"
android:layout_marginVertical="20dp"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/song_listview_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
android:layout_height="wrap_content"
android:fontFamily="@font/pretendard_medium"
android:textColor="@color/black"
android:textSize="16sp"
android:textSize="16dp"
android:layout_margin="20dp"
android:text="Song title"/>

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/stadium_listview_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
android:layout_height="wrap_content"
android:fontFamily="@font/pretendard_medium"
android:textColor="@color/black"
android:textSize="16sp"
android:textSize="16dp"
android:layout_margin="20dp"
android:text="지도"/>

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/style.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="TabTextAppearance" parent="TextAppearance.Design.Tab">
<item name="android:textSize">20sp</item>
<item name="android:textSize">20dp</item>
<item name="android:textColor">@color/white</item>
<item name="android:fontFamily">@font/pretendard_bold</item>
<item name="marginHorizontal">10dp</item>
Expand Down

0 comments on commit e2b7d44

Please sign in to comment.