У меня сейчас есть это в моем 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, кажется, торчит вверх.Есть идеи?