- 授权协议: Apache
- 开发语言: Java
- 操作系统: Android
- 软件首页: https://github.com/ijarobot/Android-Chat-Widget
- 软件文档: https://github.com/ijarobot/Android-Chat-Widget
软件介绍
Android-Chat-Widget 是像微信、WhatsApp、Line一样的聊天控件。
Demo
如何使用?
1.在Layout中
<com.jialin.chat.MessageInputToolBox android:id="@+id/messageInputToolBox" android:layout_width="match_parent" android:layout_height="wrap_content" />
2.在 Activity 中
/**
* init MessageInputToolBox
*/
private void initMessageInputToolBox() {
box = (MessageInputToolBox) findViewById(R.id.messageInputToolBox);
box.setOnOperationListener(new OnOperationListener() {
@Override
public void send(String content) {
// TODO
}
@Override
public void selectedFace(String content) {
// TODO
}
@Override
public void selectedFuncation(int index) {
// TODO
}
});
box.setFaceData(faceData);
box.setFunctionData(functionData);
}
How to Build a Billion Dollar App
George Berkowski / Little, Brown Book Group / 2015-4-1 / USD 24.95
Apps have changed the way we communicate, shop, play, interact and travel and their phenomenal popularity has presented possibly the biggest business opportunity in history. In How to Build a Billi......一起来看看 《How to Build a Billion Dollar App》 这本书的介绍吧!
