Package io.rong.message
Class TextMessage
-
- All Implemented Interfaces:
public class TextMessage
文本消息
文本消息,此消息会进行存储并计入未读消息数。
-
-
Constructor Summary
Constructors Constructor Description TextMessage(String content)
构造函数。 TextMessage(Array<byte> data)
TextMessage(Parcel in)
构造函数。
-
Method Summary
Modifier and Type Method Description String
getContent()
获取文字消息的内容。 void
setContent(String content)
设置文字消息的内容。 static TextMessage
obtain(String text)
Array<byte>
encode()
将本地消息对象序列化为消息数据。 void
writeToParcel(Parcel dest, int flags)
将类的数据写入外部提供的 Parcel 中。 int
describeContents()
描述了包含在 Parcelable 对象排列信息中的特殊对象的类型。 List<String>
getSearchableWord()
String
toString()
-
-
Constructor Detail
-
TextMessage
TextMessage(String content)
构造函数。- Parameters:
content
- 文字消息的内容。
-
TextMessage
TextMessage(Array<byte> data)
-
TextMessage
TextMessage(Parcel in)
构造函数。- Parameters:
in
- 初始化传入的 Parcel。
-
-
Method Detail
-
getContent
String getContent()
获取文字消息的内容。
- Returns:
文字消息的内容。
-
setContent
void setContent(String content)
设置文字消息的内容。
- Parameters:
content
- 文字消息的内容。
-
obtain
static TextMessage obtain(String text)
-
writeToParcel
void writeToParcel(Parcel dest, int flags)
将类的数据写入外部提供的 Parcel 中。
- Parameters:
dest
- 对象被写入的 Parcel。flags
- 对象如何被写入的附加标志,可能是 0 或 PARCELABLE_WRITE_RETURN_VALUE。
-
describeContents
int describeContents()
描述了包含在 Parcelable 对象排列信息中的特殊对象的类型。
- Returns:
一个标志位,表明 Parcelable 对象特殊对象类型集合的排列。
-
getSearchableWord
List<String> getSearchableWord()
-
toString
String toString()
-
-
-
-