-
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
1 parent
cd921e3
commit 5b5844c
Showing
8 changed files
with
135 additions
and
49 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
45 changes: 42 additions & 3 deletions
45
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,22 +1,61 @@ | ||
package com.example.myfirstapp | ||
|
||
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.SavedAlbumRVAdapter | ||
import com.example.umc_6th.SongDatabase | ||
import com.example.umc_6th.databinding.FragmentSavedAlbumBinding | ||
|
||
class SavedAlbumFragment : Fragment(){ | ||
|
||
class SavedAlbumFragment : Fragment() { | ||
lateinit var binding: FragmentSavedAlbumBinding | ||
lateinit var albumDB: SongDatabase | ||
private lateinit var albumRVAdapter: SavedAlbumRVAdapter | ||
|
||
override fun onCreateView( | ||
inflater: LayoutInflater, | ||
container: ViewGroup?, | ||
savedInstanceState: Bundle? | ||
): View? { | ||
binding = FragmentSavedAlbumBinding.inflate(inflater,container,false) | ||
binding = FragmentSavedAlbumBinding.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 | ||
} | ||
} |
59 changes: 59 additions & 0 deletions
59
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,59 @@ | ||
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
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,14 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<FrameLayout 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" | ||
tools:context=".SavedAlbumFragment"> | ||
android:layout_height="match_parent"> | ||
|
||
<!-- TODO: Update blank fragment layout --> | ||
<TextView | ||
<androidx.recyclerview.widget.RecyclerView | ||
android:id="@+id/locker_savedSong_recyclerView" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:text="@string/hello_blank_fragment" /> | ||
tools:listitem="@layout/item_locker_album" | ||
android:overScrollMode="never" | ||
android:orientation="vertical" | ||
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/> | ||
|
||
</FrameLayout> | ||
</androidx.constraintlayout.widget.ConstraintLayout> |