Skip to content

Commit

Permalink
update Stream and Update --> Notification Control, Fix some bug..
Browse files Browse the repository at this point in the history
  • Loading branch information
kimsultech committed Feb 23, 2021
1 parent eb566c3 commit b6bd70b
Show file tree
Hide file tree
Showing 7 changed files with 226 additions and 79 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId 'com.kangtech.tauonremote'
minSdkVersion 22
targetSdkVersion 30
versionCode 4
versionName "1.0 beta2"
versionCode 5
versionName "1.0 beta3"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void onBindViewHolder(@NonNull TrackListAdapter.TrackListViewHolder holde

if (!SharedPreferencesUtils.getBoolean("is_stream_mode", true)) {
if (playlistID.equals(SharedPreferencesUtils.getString("playlistID", "0"))) {
if (trackListModels.tracks.get(position).position == SharedPreferencesUtils.getInt("TrackPosition", 0)) {
if (trackListModels.tracks.get(position).id == SharedPreferencesUtils.getInt("TrackID", 0)) {
holder.llTrack.setBackgroundColor(context.getResources().getColor(R.color.rose_bg_seekbar1));
} else {
holder.llTrack.setBackgroundColor(context.getResources().getColor(R.color.rose_bg_list));
Expand Down
Loading

0 comments on commit b6bd70b

Please sign in to comment.