move plus button to middle, and fix so both text buttons wrap when

required on narrow screen.
This commit is contained in:
Eric House 2012-05-18 21:14:50 -07:00
parent 47a5ab65df
commit df0c5e4abf

View file

@ -41,19 +41,21 @@
>
<Button android:id="@+id/button_add"
android:text="@string/button_sms_add"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
<ImageButton android:id="@+id/manual_add_button"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:src="@android:drawable/ic_input_add"
android:clickable="false"
/>
<Button android:id="@+id/button_clear"
android:text="@string/bt_pick_clear_button"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<ImageButton android:id="@+id/manual_add_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@android:drawable/ic_input_add"
android:clickable="false"
android:layout_weight="1"
/>
</LinearLayout>