我正在使用自定义列表适配器...显示消息我想将其更改为气泡消息...
this.ListAdapter = new IndMessageAdapter(this,
R.layout.chatmessage_list,
Messages);
标准:
1.Bubble应根据消息长度进行扩展...
2.气泡不收缩或......改变它的分辨率??
任何想法如何继续?
答案 0 :(得分:0)
使用TextView
并将此图片设为background image
示例强>
<TextView
android:id="@+id/messagescreenrow_senderChatText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Ok"
android:background="@drawable/groupbubble"
android:paddingLeft="10dip"
android:paddingRight="10dip"
android:paddingTop="10dip"
android:paddingBottom="10dip"
/>