-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
181 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.example.umc_6th | ||
|
||
import androidx.room.Entity | ||
import androidx.room.PrimaryKey | ||
|
||
@Entity(tableName = "LikeTable") | ||
data class Like( | ||
var userId : Int, | ||
var albumId : Int | ||
){ | ||
@PrimaryKey(autoGenerate = true) var id : Int = 0 | ||
} |
35 changes: 35 additions & 0 deletions
35
UMC_6th/app/src/main/java/com/example/umc_6th/SavedAlbumFragment.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,58 @@ | ||
package com.example.umc_6th | ||
|
||
import android.os.Bundle | ||
import android.util.Log | ||
import android.view.LayoutInflater | ||
import android.view.View | ||
import android.view.ViewGroup | ||
import androidx.appcompat.app.AppCompatActivity | ||
import androidx.fragment.app.Fragment | ||
import androidx.recyclerview.widget.LinearLayoutManager | ||
import com.example.umc_6th.databinding.FragmentLockerSavedalbumBinding | ||
|
||
class SavedAlbumFragment : Fragment() { | ||
|
||
lateinit var binding: FragmentLockerSavedalbumBinding | ||
lateinit var albumDB: SongDatabase | ||
|
||
override fun onCreateView( | ||
inflater: LayoutInflater, | ||
container: ViewGroup?, | ||
savedInstanceState: Bundle? | ||
): View? { | ||
binding = FragmentLockerSavedalbumBinding.inflate(inflater,container,false) | ||
|
||
albumDB = SongDatabase.getInstance(requireContext())!! | ||
|
||
return binding.root | ||
} | ||
override fun onStart() { | ||
super.onStart() | ||
initRecyclerview() | ||
} | ||
|
||
private fun initRecyclerview(){ | ||
binding.lockerSavedSongRecyclerView.layoutManager = LinearLayoutManager(context, LinearLayoutManager.VERTICAL, false) | ||
|
||
val albumRVAdapter = SavedAlbumRVAdapter() | ||
//리스너 객체 생성 및 전달 | ||
|
||
albumRVAdapter.setMyItemClickListener(object : SavedAlbumRVAdapter.MyItemClickListener{ | ||
override fun onRemoveSong(songId: Int) { | ||
albumDB.albumDao().getLikedAlbums(getJwt()) | ||
} | ||
}) | ||
|
||
binding.lockerSavedSongRecyclerView.adapter = albumRVAdapter | ||
|
||
albumRVAdapter.addAlbums(albumDB.albumDao().getLikedAlbums(getJwt()) as ArrayList) | ||
} | ||
|
||
private fun getJwt() : Int { | ||
val spf = activity?.getSharedPreferences("auth" , AppCompatActivity.MODE_PRIVATE) | ||
val jwt = spf!!.getInt("jwt", 0) | ||
Log.d("MAIN_ACT/GET_JWT", "jwt_token: $jwt") | ||
|
||
return jwt | ||
} | ||
} |
60 changes: 60 additions & 0 deletions
60
UMC_6th/app/src/main/java/com/example/umc_6th/SavedAlbumRVAdapter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package com.example.umc_6th | ||
|
||
import android.annotation.SuppressLint | ||
import android.view.LayoutInflater | ||
import android.view.ViewGroup | ||
import androidx.recyclerview.widget.RecyclerView | ||
import com.example.umc_6th.databinding.ItemLockerAlbumBinding | ||
|
||
|
||
class SavedAlbumRVAdapter (): RecyclerView.Adapter<SavedAlbumRVAdapter.ViewHolder>() { | ||
private val albums = ArrayList<Album>() | ||
|
||
interface MyItemClickListener{ | ||
fun onRemoveSong(songId: Int) | ||
} | ||
|
||
private lateinit var mItemClickListener: MyItemClickListener | ||
|
||
fun setMyItemClickListener(itemClickListener: MyItemClickListener){ | ||
mItemClickListener = itemClickListener | ||
} | ||
|
||
override fun onCreateViewHolder(viewGroup: ViewGroup, viewType: Int): SavedAlbumRVAdapter.ViewHolder { | ||
val binding: ItemLockerAlbumBinding = ItemLockerAlbumBinding.inflate(LayoutInflater.from(viewGroup.context), viewGroup, false) | ||
|
||
return ViewHolder(binding) | ||
} | ||
|
||
override fun onBindViewHolder(holder: SavedAlbumRVAdapter.ViewHolder, position: Int) { | ||
holder.bind(albums[position]) | ||
holder.binding.itemLockerAlbumMoreIv.setOnClickListener { | ||
mItemClickListener.onRemoveSong(albums[position].id) | ||
removeSong(position) | ||
} | ||
} | ||
|
||
override fun getItemCount(): Int = albums.size | ||
|
||
@SuppressLint("NotifyDataSetChanged") | ||
fun addAlbums(albums: ArrayList<Album>) { | ||
this.albums.clear() | ||
this.albums.addAll(albums) | ||
|
||
notifyDataSetChanged() | ||
} | ||
|
||
fun removeSong(position: Int){ | ||
albums.removeAt(position) | ||
notifyDataSetChanged() | ||
} | ||
|
||
inner class ViewHolder(val binding: ItemLockerAlbumBinding) : RecyclerView.ViewHolder(binding.root){ | ||
fun bind(album: Album){ | ||
binding.itemLockerAlbumCoverImgIv.setImageResource(album.coverImg!!) | ||
binding.itemLockerAlbumTitleTv.text = album.title | ||
binding.itemLockerAlbumSingerTv.text = album.singer | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 12 additions & 11 deletions
23
UMC_6th/app/src/main/res/layout/fragment_locker_savedalbum.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
<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:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
xmlns:app="http://schemas.android.com/apk/res-auto"> | ||
android:layout_height="match_parent"> | ||
|
||
<TextView | ||
<androidx.recyclerview.widget.RecyclerView | ||
android:id="@+id/locker_savedSong_recyclerView" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="저장한 앨범이 없습니다." | ||
android:textSize="30sp" | ||
app:layout_constraintTop_toTopOf="parent" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent"/> | ||
android:layout_height="match_parent" | ||
tools:listitem="@layout/item_locker_album" | ||
android:overScrollMode="never" | ||
android:orientation="vertical" | ||
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/> | ||
|
||
</androidx.constraintlayout.widget.ConstraintLayout> |