【发布时间】:2011-07-14 08:36:01
【问题描述】:
我目前在我的 layout.xml 中有这个
<EditText android:id="@+id/body" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="1"
android:hint="Type to compose" />
<ImageButton android:id="@+id/attach"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:src="@drawable/attach_photo" />
<Button android:id="@+id/send" android:text="@string/send"
android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
我面临的问题是 ImageButton 的顶部没有像 Button 和 EditText 那样对齐。其他 2 个很好地填充了高度,但 ImageButton 似乎向上伸出。有什么想法吗?
【问题讨论】:
-
添加内边距也不会使按钮移动。
标签: android android-linearlayout imagebutton