在聊天应用程序中将背景布局大小调整为文本大小

时间:2017-03-13 10:24:35

标签: android chat

我想调整背景布局作为文本大小,如Whatsapp和其他聊天应用程序[目前我的应用程序看起来像这样:

enter image description here

我想改变它,我该怎么做呢:

enter image description here

请帮帮我

2 个答案:

答案 0 :(得分:0)

将邮件宽度更改为android:layout_width=wrap_content。分享您的message xml

答案 1 :(得分:0)

使用填充为文本提供适当的呼吸空间。并且不要使用静态尺寸。这样做

<TextView
      android:id="@+id/textView"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:padding="16dp"
      android:text="Your Text"
      android:textColor="@color/white"
      android:textSize="15sp" 
      android:background="@drawable/background"/>