2012-07-19 01:00:48 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2012 The Android Open Source Project
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2013-01-22 01:12:44 +00:00
|
|
|
<!-- Adapted from frameworks/base/core/res/res/layout/alert_dialog_holo.xml. We
|
|
|
|
want a dialog, but it must be its own activity so we can launch the soft
|
|
|
|
keyboard on it. A regular dialog will not work since it would be launched from
|
|
|
|
the IME. -->
|
2013-05-24 00:29:26 +00:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android">
|
2012-07-19 01:00:48 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2013-05-24 00:30:41 +00:00
|
|
|
android:layout_height="wrap_content"
|
2013-01-22 01:12:44 +00:00
|
|
|
android:layout_marginStart="8dip"
|
|
|
|
android:layout_marginEnd="8dip"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<View android:layout_width="match_parent"
|
|
|
|
android:layout_height="2dip"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:background="@android:color/holo_blue_light" />
|
|
|
|
<TextView
|
|
|
|
style="?android:attr/windowTitleStyle"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="64dip"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip"
|
|
|
|
android:gravity="center_vertical|left"
|
|
|
|
android:text="@string/research_feedback_dialog_title" />
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="2dip"
|
|
|
|
android:background="@android:color/holo_blue_light" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/research_feedback_contents"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_gravity="fill_horizontal|center_vertical"
|
|
|
|
android:layout_marginLeft="8dip"
|
|
|
|
android:layout_marginRight="8dip"
|
|
|
|
android:layout_marginBottom="8dip"
|
|
|
|
android:layout_marginTop="8dip"
|
|
|
|
android:minLines="2"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
android:hint="@string/research_feedback_hint"
|
2013-01-31 22:49:00 +00:00
|
|
|
android:inputType="textMultiLine|textCapSentences">
|
2013-01-22 01:12:44 +00:00
|
|
|
<requestFocus />
|
|
|
|
</EditText>
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/research_feedback_include_account_name"
|
|
|
|
android:layout_height="wrap_content"
|
2012-07-19 01:00:48 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip"
|
2013-01-22 01:12:44 +00:00
|
|
|
android:layout_marginBottom="8dip"
|
|
|
|
android:checked="false"
|
|
|
|
android:text="@string/research_feedback_include_account_name_label" />
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/research_feedback_include_recording_checkbox"
|
|
|
|
android:layout_height="wrap_content"
|
2012-07-19 01:00:48 +00:00
|
|
|
android:layout_width="match_parent"
|
2013-01-22 01:12:44 +00:00
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip"
|
|
|
|
android:layout_marginBottom="8dip"
|
|
|
|
android:checked="false"
|
|
|
|
android:text="@string/research_feedback_include_recording_label" />
|
2012-07-19 01:00:48 +00:00
|
|
|
<LinearLayout
|
2014-01-08 07:52:04 +00:00
|
|
|
style="?android:attr/buttonBarStyle"
|
2012-07-19 01:00:48 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-01-08 07:52:04 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layoutDirection="locale"
|
|
|
|
android:measureWithLargestChild="true">
|
|
|
|
<Button
|
|
|
|
android:id="@+id/research_feedback_cancel_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_gravity="left"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:maxLines="2"
|
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:text="@string/research_feedback_cancel"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<Button
|
|
|
|
android:id="@+id/research_feedback_send_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:maxLines="2"
|
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:text="@string/research_feedback_send"
|
|
|
|
android:layout_height="wrap_content" />
|
2012-07-19 01:00:48 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2013-01-22 01:12:44 +00:00
|
|
|
</ScrollView>
|