gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:01:11 25 4
gpt4 key购买 nike

我正在做一个简单的聊天应用程序,我想显示类似于iphonesms app 的气球。 .

因此,我正在使用具有特定布局的 ListView 执行 Activity。这是我的布局:

/* 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,以便文本占据整个空间。

顺便说一句,漂亮的气球,别忘了也有 hdpi 版本:)

关于android - 气球聊天应用程序问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3721445/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com