> There's also no documentation around the toolbar that native Android > apps use at the bottom of forms (e.g., New Contact has Done / Revert, > Compose Email has Send / Save As Draft / Discard. Is this toolbar a > standard control?
No, but it's not exactly hard to do. For example: <LinearLayout android:id="@+id/button_bar" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_gravity="bottom" style="@android:style/ButtonBar"> <Button android:id="@+id/previous" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1" android:text="@string/previous"/> <Button android:id="@+id/next" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1" android:text="@string/next"/> </LinearLayout>
-- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en