I'm inflating an AlertDialog to let the user send comments. Fairly simple. But I'm getting this Lint warning:
Layout uses the wrong button order for API >= 14: Create a layout-v14/chat_comment_dialog.xml file with opposite order: Cancel button should be on the left (was "@string/send | Cancel", should be "Cancel | @string/ send")
So, yeah, this is the solution, create a specific layout for API >= 14 and invert the order. But....REALLY? Is this REALLY the official suggestion? To set one order in some devices and a different one in others? As a user, I would feel very confused. Should I ignore this Lint advice, or otherwise, follow this new pattern for a set of devices (which I think is rather confusing)
Anyway, here's the layout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="8dp" >
<EditText
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/username"
android:singleLine="true" />
<EditText
android:id="@+id/message"
android:layout_width="match_parent"
android:layout_height="180dp"
android:gravity="top|left"
android:hint="@string/review" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingRight="4dp"
android:text="@string/send"
android:textSize="18sp" />
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingLeft="4dp"
android:text="@android:string/cancel"
android:textSize="18sp" />
</LinearLayout>
</LinearLayout>
By the way, I have to inflate the Buttons in the XML and not in the AlertDialog.Builder (maybe this way the buttons will be automatically order themselves), because any onClickListener you set to the Builder's deafult button will dissmiss the dialog, and I have to avoid that behaviour to control the Dialog myself.