Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AloqaIM-Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
AloqaIM-Android
Commits
7577ebb2
Commit
7577ebb2
authored
Nov 17, 2017
by
Filipe de Lima Brito
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ChatListAdapter
parent
b2082e94
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
0 deletions
+48
-0
ChatListAdapter.kt
.../java/chat/rocket/android/app/chatlist/ChatListAdapter.kt
+48
-0
No files found.
app/src/main/java/chat/rocket/android/app/chatlist/ChatListAdapter.kt
0 → 100644
View file @
7577ebb2
package
chat.rocket.android.app.chatlist
import
android.content.Context
import
android.support.v7.widget.RecyclerView
import
android.view.LayoutInflater
import
android.view.View
import
android.view.ViewGroup
import
chat.rocket.android.R
import
kotlinx.android.synthetic.main.item_chat.view.*
class
ChatListAdapter
(
private
var
dataSet
:
List
<
Chat
>,
private
val
context
:
Context
)
:
RecyclerView
.
Adapter
<
ChatListAdapter
.
ViewHolder
>()
{
override
fun
onCreateViewHolder
(
parent
:
ViewGroup
,
viewType
:
Int
):
ViewHolder
{
val
view
=
LayoutInflater
.
from
(
parent
.
context
).
inflate
(
R
.
layout
.
item_chat
,
parent
,
false
)
return
ViewHolder
(
view
)
}
override
fun
onBindViewHolder
(
holder
:
ViewHolder
,
position
:
Int
)
{
val
chat
=
dataSet
[
position
]
holder
.
userAvatar
.
setImageURI
(
chat
.
userAvatarUri
)
holder
.
roomName
.
text
=
chat
.
roomName
holder
.
lastMessage
.
text
=
chat
.
lastMessage
holder
.
lastMessageTimestamp
.
text
=
chat
.
lastMessageTimestamp
val
unreadMessage
=
chat
.
unreadMessage
when
{
unreadMessage
in
1
..
99
->
{
holder
.
unreadMessage
.
text
=
unreadMessage
.
toString
()
holder
.
unreadMessage
.
visibility
=
View
.
VISIBLE
}
unreadMessage
>
99
->
{
holder
.
unreadMessage
.
text
=
context
.
getString
(
R
.
string
.
msg_more_than_ninety_nine_unread_messages
)
holder
.
unreadMessage
.
visibility
=
View
.
VISIBLE
}
else
->
holder
.
unreadMessage
.
visibility
=
View
.
GONE
}
}
override
fun
getItemCount
():
Int
=
dataSet
.
size
class
ViewHolder
(
itemView
:
View
)
:
RecyclerView
.
ViewHolder
(
itemView
)
{
val
userAvatar
=
itemView
.
image_user_avatar
val
roomName
=
itemView
.
text_room_name
val
lastMessage
=
itemView
.
text_last_message
val
lastMessageTimestamp
=
itemView
.
text_last_message_timestamp
val
unreadMessage
=
itemView
.
text_unread_message
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment