diff options
| author | aarne <aarne@chalmers.se> | 2014-03-10 18:04:43 +0000 |
|---|---|---|
| committer | aarne <aarne@chalmers.se> | 2014-03-10 18:04:43 +0000 |
| commit | ccda8f00e169ae2db24de6e9295bd1b256bf30a8 (patch) | |
| tree | e117c85f99ae57a0f1b09cbf63052d16fd03ef66 /src/ui/android/res/drawable | |
| parent | 2ee2769146f22630773cf6e8c980b64070e8b57c (diff) | |
android: added (1) dg icon (2) green/yellow/red colours for translation confidence (3) App grammars as test case in Translator.java
Diffstat (limited to 'src/ui/android/res/drawable')
4 files changed, 14 insertions, 2 deletions
diff --git a/src/ui/android/res/drawable/first_person_utterance_bg.xml b/src/ui/android/res/drawable/first_person_utterance_bg.xml index 9eb02aef1..acdf9ab92 100644 --- a/src/ui/android/res/drawable/first_person_utterance_bg.xml +++ b/src/ui/android/res/drawable/first_person_utterance_bg.xml @@ -2,5 +2,5 @@ <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <corners android:radius="4dp" /> - <solid android:color="#75CD75" /> + <solid android:color="#CDCDED" /> </shape>
\ No newline at end of file diff --git a/src/ui/android/res/drawable/second_person_best_utterance_bg.xml b/src/ui/android/res/drawable/second_person_best_utterance_bg.xml new file mode 100644 index 000000000..9eb02aef1 --- /dev/null +++ b/src/ui/android/res/drawable/second_person_best_utterance_bg.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <corners android:radius="4dp" /> + <solid android:color="#75CD75" /> +</shape>
\ No newline at end of file diff --git a/src/ui/android/res/drawable/second_person_chunk_utterance_bg.xml b/src/ui/android/res/drawable/second_person_chunk_utterance_bg.xml new file mode 100644 index 000000000..d10d67122 --- /dev/null +++ b/src/ui/android/res/drawable/second_person_chunk_utterance_bg.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <corners android:radius="4dp" /> + <solid android:color="#FFB2A5" /> +</shape>
\ No newline at end of file diff --git a/src/ui/android/res/drawable/second_person_utterance_bg.xml b/src/ui/android/res/drawable/second_person_utterance_bg.xml index 4acf07c67..e07cc10b3 100644 --- a/src/ui/android/res/drawable/second_person_utterance_bg.xml +++ b/src/ui/android/res/drawable/second_person_utterance_bg.xml @@ -2,5 +2,5 @@ <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <corners android:radius="4dp" /> - <solid android:color="#7575CD" /> + <solid android:color="#FFFF99" /> </shape>
\ No newline at end of file |
