diff options
author | 2012-07-18 18:00:48 -0700 | |
---|---|---|
committer | 2012-07-22 18:36:24 -0700 | |
commit | 3c233bf1a5003c478a27964758afe2ca581d3d8b (patch) | |
tree | 86c64549abefca6cd40bd75c81391fa6844cd702 /java/res | |
parent | 7e220d3c3a3981373d7d703611f23bf33bb2f25e (diff) | |
download | latinime-3c233bf1a5003c478a27964758afe2ca581d3d8b.tar.gz latinime-3c233bf1a5003c478a27964758afe2ca581d3d8b.tar.xz latinime-3c233bf1a5003c478a27964758afe2ca581d3d8b.zip |
ResearchLogger feedback form
- also cleaned up RLog menu
multi-project commit with If0fd4fef89d390073e6939d5188ed5696866cb33
Bug: 6188932
Change-Id: I4f66f13bd366b4e8bde742ccd0704f812c6d33f9
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/layout/research_feedback_activity.xml | 31 | ||||
-rw-r--r-- | java/res/layout/research_feedback_fragment_layout.xml | 112 | ||||
-rw-r--r-- | java/res/layout/research_feedback_layout.xml | 50 | ||||
-rw-r--r-- | java/res/values/strings.xml | 52 |
4 files changed, 228 insertions, 17 deletions
diff --git a/java/res/layout/research_feedback_activity.xml b/java/res/layout/research_feedback_activity.xml new file mode 100644 index 000000000..a6b8b8a43 --- /dev/null +++ b/java/res/layout/research_feedback_activity.xml @@ -0,0 +1,31 @@ +<?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. +--> + +<com.android.inputmethod.research.FeedbackLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:id="@+id/research_feedback_layout" +> + + <fragment + android:id="@+id/research_feedback_fragment" + android:name="com.android.inputmethod.research.FeedbackFragment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + /> +</com.android.inputmethod.research.FeedbackLayout> diff --git a/java/res/layout/research_feedback_fragment_layout.xml b/java/res/layout/research_feedback_fragment_layout.xml new file mode 100644 index 000000000..cc04cedf4 --- /dev/null +++ b/java/res/layout/research_feedback_fragment_layout.xml @@ -0,0 +1,112 @@ +<?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. +--> + +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical" +> + + <!-- Mimic a dialog title. Necessary since the dialog is actually an activity, so the normal + dialog title construction code is not available. --> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + > + <com.android.internal.widget.DialogTitle + style="?android:attr/windowTitleStyle" + android:singleLine="true" + android:ellipsize="end" + android:layout_width="match_parent" + android:layout_height="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:lines="2" + android:hint="@string/research_feedback_hint" + android:inputType="textMultiLine" + android:imeOptions="flagNoFullscreen" + > + <requestFocus /> + </EditText> + + <CheckBox + android:id="@+id/research_feedback_include_history" + android:layout_height="wrap_content" + android:layout_width="match_parent" + android:layout_marginBottom="8dip" + android:checked="true" + android:text="@string/research_feedback_include_history_label" + /> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:divider="?android:attr/dividerHorizontal" + android:showDividers="beginning" + android:dividerPadding="0dip" + > + <LinearLayout + style="?android:attr/buttonBarStyle" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" + android:measureWithLargestChild="true" + > + <Button + android:id="@+id/research_feedback_cancel_button" + android:layout_width="0dip" + 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="0dip" + 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" + /> + </LinearLayout> + </LinearLayout> +</LinearLayout> diff --git a/java/res/layout/research_feedback_layout.xml b/java/res/layout/research_feedback_layout.xml new file mode 100644 index 000000000..bacd19101 --- /dev/null +++ b/java/res/layout/research_feedback_layout.xml @@ -0,0 +1,50 @@ +<?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. +--> + +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical" +> + + <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:lines="2" + android:hint="@string/research_feedback_hint" + android:inputType="textMultiLine" + android:imeOptions="flagNoFullscreen" + android:focusable="true" + > + <requestFocus /> + </EditText> + + <CheckBox + android:id="@+id/research_feedback_include_history" + android:layout_height="wrap_content" + android:layout_width="match_parent" + android:layout_marginBottom="8dip" + android:checked="true" + android:text="@string/research_feedback_include_history_label" + /> +</LinearLayout> diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml index 98c891894..377018a6b 100644 --- a/java/res/values/strings.xml +++ b/java/res/values/strings.xml @@ -222,29 +222,47 @@ <!-- Title for input language selection screen --> <string name="language_selection_title">Input languages</string> - <!-- Title for dialog option that lets user mark a particular time in the log for later review by experts [CHAR LIMIT=38] --> - <string name="note_timestamp_for_researchlog">Note timestamp in log</string> - <!-- Toast notification message that the time has been marked for later review. [CHAR LIMIT=25] --> - <string name="notify_recorded_timestamp">Recorded timestamp</string> - <!-- Title for dialog option to let users cancel logging and delete log for this session [CHAR LIMIT=35] --> - <string name="do_not_log_this_session">Suspend logging</string> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_do_not_log_this_session" translatable="false">Suspend logging</string> <!-- Title for dialog option to let users reenable logging [CHAR LIMIT=35] --> - <string name="enable_session_logging">Enable logging</string> - <!-- Title for dialog option to let users log all events in this session [CHAR LIMIT=35] --> - <string name="log_whole_session_history">Log whole session history</string> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_enable_session_logging" translatable="false">Enable logging</string> <!-- Toast notification that the system is processing the request to delete the log for this session [CHAR LIMIT=35] --> - <string name="notify_session_log_deleting">Deleting session log</string> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_notify_session_log_deleting" translatable="false">Deleting session log</string> <!-- Toast notification that the system has successfully deleted the log for this session [CHAR LIMIT=35] --> - <string name="notify_logging_suspended">Logging temporarily suspended. To disable permanently, go to Android Keyboard Settings</string> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_notify_logging_suspended" translatable="false">Logging temporarily suspended. To disable permanently, go to Android Keyboard Settings</string> <!-- Toast notification that the system has failed to delete the log for this session [CHAR LIMIT=35] --> - <string name="notify_session_log_not_deleted">Session log NOT deleted</string> - <!-- Toast notification that the system has recorded the whole session history [CHAR LIMIT=35] --> - <string name="notify_session_history_logged">Session history logged</string> - <!-- Toast notification that the system has failed to record the whole session history [CHAR LIMIT=35] --> - <string name="notify_session_history_not_logged">Error: Session history NOT logged</string> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_notify_session_log_not_deleted" translatable="false">Session log NOT deleted</string> <!-- Toast notification that the system is enabling logging [CHAR LIMIT=35] --> - <string name="notify_session_logging_enabled">Session logging enabled</string> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_notify_session_logging_enabled" translatable="false">Session logging enabled</string> + + <!-- Menu option that lets user send feedback for research purposes about the IME [CHAR LIMIT=38] --> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_feedback_menu_option" translatable="false">Send feedback</string> + <!-- Dialog box title that lets user send feedback for research purposes about the IME [CHAR LIMIT=38] --> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_feedback_dialog_title" translatable="false">Send feedback</string> + <!-- Text for checkbox option to include user data in feedback for research purposes [CHAR LIMIT=50] --> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_feedback_include_history_label" translatable="false">Include last 5 words entered</string> + <!-- Hint to user about the text entry field where they should enter research feedback [CHAR LIMIT=40] --> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_feedback_hint" translatable="false">Enter your feedback here.</string> + <!-- Dialog button choice to send research feedback [CHAR LIMIT=35] --> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_feedback_send" translatable="false">Send</string> + <!-- Dialog button choice to cancel sending research feedback [CHAR LIMIT=35] --> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_feedback_cancel" translatable="false">Cancel</string> + <!-- Toast notification to ask user to quit the research feedback dialog to perform this operation [CHAR LIMIT=100] --> + <!-- TODO: remove translatable=false attribute once text is stable --> + <string name="research_please_exit_feedback_form" translatable="false">Please exit the feedback dialog to access the research log menu</string> + <!-- Preference for input language selection --> <string name="select_language">Input languages</string> |