subscribers

This commit is contained in:
rimthekid 2022-03-07 08:31:55 +04:00
parent d30b20c65c
commit 7fa1312296
2 changed files with 9 additions and 9 deletions

View File

@ -16,8 +16,8 @@
}
],
"attributes": [],
"versionCode": 4,
"versionName": "0.2.2",
"versionCode": 5,
"versionName": "0.2.3",
"outputFile": "app-x86_64-release.apk"
},
{
@ -29,8 +29,8 @@
}
],
"attributes": [],
"versionCode": 4,
"versionName": "0.2.2",
"versionCode": 5,
"versionName": "0.2.3",
"outputFile": "app-arm64-v8a-release.apk"
},
{
@ -42,8 +42,8 @@
}
],
"attributes": [],
"versionCode": 4,
"versionName": "0.2.2",
"versionCode": 5,
"versionName": "0.2.3",
"outputFile": "app-x86-release.apk"
},
{
@ -55,8 +55,8 @@
}
],
"attributes": [],
"versionCode": 4,
"versionName": "0.2.2",
"versionCode": 5,
"versionName": "0.2.3",
"outputFile": "app-armeabi-v7a-release.apk"
}
],

View File

@ -86,7 +86,7 @@ class CustomViewHolder1(private val v: View): RecyclerView.ViewHolder(v){
val channelName = v.findViewById<TextView>(R.id.search_channel_name)
channelName.text = item.name
val channelViews = v.findViewById<TextView>(R.id.search_views)
channelViews.text = item.subscribers.formatShort() + "subscribers • "+ item.videos + " videos"
channelViews.text = item.subscribers.formatShort() + " subscribers • "+ item.videos + " videos"
v.setOnClickListener {
val activity = v.context as MainActivity
val bundle = bundleOf("channel_id" to item.url)