android – 气球聊天应用程序问题

android – 气球聊天应用程序问题,第1张

概述我正在做一个简单的聊天应用程序,我想要显示类似于iPhone sms app的气球. 所以我正在使用具有特定布局的ListView进行活动. 这是我的布局: /* Activity Layout */ <LinearLayout android:orientation="vertical" android:layout_width="fill_parent" and 我正在做一个简单的聊天应用程序,我想要显示类似于iPhone sms app的气球.

所以我正在使用具有特定布局的ListVIEw进行活动.
这是我的布局:

/* Activity Layout */  <linearLayout androID:orIEntation="vertical"       androID:layout_wIDth="fill_parent"       androID:layout_height="fill_parent"    >     <ListVIEw androID:ID="@+ID/chat_log"         androID:layout_wIDth="fill_parent"         androID:layout_height="fill_parent"         androID:stackFromBottom="true"         androID:layout_margintop="50dp"         androID:transcriptMode="alwaysScroll"         androID:layout_weight="1"         androID:cachecolorHint="#00000000"         androID:clickable="false"     />     <linearLayout androID:orIEntation="horizontal"         androID:layout_wIDth="fill_parent"         androID:layout_height="wrap_content"     >   <EditText androID:ID="@+ID/chat_input_text"             androID:layout_wIDth="wrap_content"             androID:layout_height="wrap_content"             androID:layout_weight="1"             androID:layout_gravity="bottom"         />         <button androID:ID="@+ID/chat_send_button"             androID:layout_wIDth="wrap_content"             androID:layout_height="wrap_content"             androID:text="@string/chat_send_button"         />     </linearLayout> </linearLayout>

其他:

/* Row Layout */<FrameLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:ID="@+ID/userprofile_vIEw" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:background="@drawable/chat_ballon_left" > <TextVIEw  androID:ID="@+ID/chat_message"  androID:layout_wIDth="wrap_content"  androID:layout_height="wrap_content"  androID:paddingleft="2dp"  androID:text="haasdasdasdasdasdasdasdoo" /></FrameLayout>

这是result.

我的问题:

>我想删除的灰线.
>文本未使用整个空间.
>不知怎的,甚至以为我添加了androID:clickable =“false”气球是可点击的.

解决方法 FrameLayout是不必要的,因此使用TextVIEw作为根元素(当然使用chat_ballon_left背景).将宽度设置为match_parent,以便文本占用整个空间.

BTW好气球,别忘了有hdpi版本:)

总结

以上是内存溢出为你收集整理的android – 气球聊天应用程序问题全部内容,希望文章能够帮你解决android – 气球聊天应用程序问题所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1135775.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存