我试图在我的活动中添加一个包含图像按钮,文本视图和另一个图像按钮的页脚(我想创建一个像whatsapp这样的应用程序,它应该看起来几乎相同)。我尝试了很多方法,但都没有用。 我试图像这样制作一个页脚:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/chatBottom"
android:layout_width="wrap_content"
android:layout_height="55dp"
android:background="#D8D8D8"
android:layout_alignParentBottom="true" >
<ImageButton
android:id="@+id/emojiButton"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:src="@drawable/emoji_button"
android:background="#D8D8D8"
android:padding="10dp"
android:contentDescription="@string/empty"/>
<EditText
android:id="@+id/enterMessage"
android:layout_width="match_parent"
android:layout_height="55dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="5dp"
android:padding="5dp"
android:layout_toLeftOf="@+id/sendMessage"
android:layout_toRightOf="@id/emojiButton"
android:background="@drawable/textfield_multiline_activated_holo_dark"
android:hint="" />
<ImageButton
android:id="@+id/sendMessage"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:background="#D8D8D8"
android:contentDescription="@string/empty"
android:padding="10dp"
android:src="@drawable/action_send_message" />
并使用java中的include或java中的addView()添加它,但没有任何正常工作。最重要的是页脚具有背景颜色(总是当我尝试将颜色设置为页脚所在的布局时,整个活动都有这种颜色)并且textview会自动调整大小。
最好的问候,奥利弗