├── .gitignore
├── .idea
├── .name
├── compiler.xml
├── copyright
│ └── profiles_settings.xml
├── encodings.xml
├── gradle.xml
├── libraries
│ ├── animated_vector_drawable_23_4_0.xml
│ ├── appcompat_v7_23_4_0.xml
│ ├── hamcrest_core_1_3.xml
│ ├── junit_4_12.xml
│ ├── support_annotations_23_4_0.xml
│ ├── support_v4_23_4_0.xml
│ ├── support_vector_drawable_23_4_0.xml
│ ├── tbs_sdk_v1_5_1_1057_25436_obfs_20160331_144900.xml
│ └── xwalk_core_library_java.xml
├── misc.xml
├── modules.xml
├── runConfigurations.xml
└── workspace.xml
├── LICENSE
├── README.md
├── WebViewDemo.iml
├── app
├── .gitignore
├── app.iml
├── build.gradle
├── libs
│ └── tbs_sdk_v1.5.1.1057_25436_obfs_20160331_144900.jar
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── android
│ │ └── space
│ │ └── lingen
│ │ └── webviewdemo
│ │ └── ApplicationTest.java
│ ├── main
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── android
│ │ │ └── space
│ │ │ └── lingen
│ │ │ └── webviewdemo
│ │ │ └── Main
│ │ │ ├── BaseFragmentActivity.java
│ │ │ └── webview
│ │ │ ├── MainActivity.java
│ │ │ ├── activity
│ │ │ ├── CrosswalkWebViewActivity.java
│ │ │ ├── OrignalWebViewActivity.java
│ │ │ └── X5WebViewActivity.java
│ │ │ └── fragment
│ │ │ ├── CrosswalkWebViewFragment.java
│ │ │ ├── OrignalWebViewFragment.java
│ │ │ └── X5WebViewFrament.java
│ └── res
│ │ ├── layout
│ │ ├── activity_main.xml
│ │ ├── activity_navigation.xml
│ │ ├── fragement_corsswalk_webview.xml
│ │ ├── fragement_x5_webview.xml
│ │ └── fragment_orignal_webview.xml
│ │ ├── mipmap-hdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-mdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-xhdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-xxhdpi
│ │ ├── home.png
│ │ └── ic_launcher.png
│ │ ├── mipmap-xxxhdpi
│ │ └── ic_launcher.png
│ │ └── values
│ │ ├── colors.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── android
│ └── space
│ └── lingen
│ └── webviewdemo
│ └── ExampleUnitTest.java
├── build.gradle
├── crosswalk
├── .gitignore
├── build.gradle
├── crosswalk.iml
├── libs
│ └── xwalk_core_library_java.jar
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── android
│ │ └── space
│ │ └── lingen
│ │ └── crosswalk
│ │ └── ApplicationTest.java
│ ├── main
│ ├── AndroidManifest.xml
│ ├── jniLibs
│ │ └── armeabi-v7a
│ │ │ ├── libxwalkcore.so
│ │ │ ├── libxwalkdummy.so
│ │ │ └── native_lib_placeholder.stamp
│ └── res
│ │ ├── drawable-hdpi
│ │ ├── bubble.9.png
│ │ ├── bubble_arrow_up.png
│ │ ├── color_picker_advanced_select_handle.png
│ │ ├── dropdown_popup_background_down.9.png
│ │ ├── dropdown_popup_background_up.9.png
│ │ ├── ic_menu_share_holo_light.png
│ │ ├── ic_search.png
│ │ ├── ic_warning.png
│ │ ├── ondemand_overlay.9.png
│ │ └── verify_checkmark.png
│ │ ├── drawable-v21
│ │ ├── button_borderless_compat.xml
│ │ └── button_compat.xml
│ │ ├── drawable-xhdpi
│ │ ├── bubble.9.png
│ │ ├── bubble_arrow_up.png
│ │ ├── color_picker_advanced_select_handle.png
│ │ ├── dropdown_popup_background_down.9.png
│ │ ├── dropdown_popup_background_up.9.png
│ │ ├── ic_menu_share_holo_light.png
│ │ ├── ic_search.png
│ │ ├── ic_warning.png
│ │ ├── ondemand_overlay.9.png
│ │ └── verify_checkmark.png
│ │ ├── drawable-xxhdpi
│ │ ├── ic_menu_share_holo_light.png
│ │ ├── ic_search.png
│ │ ├── ic_warning.png
│ │ └── verify_checkmark.png
│ │ ├── drawable-xxxhdpi
│ │ ├── ic_menu_share_holo_light.png
│ │ ├── ic_search.png
│ │ ├── ic_warning.png
│ │ └── verify_checkmark.png
│ │ ├── drawable
│ │ ├── autofill_chip_inset.xml
│ │ ├── bubble.9.png
│ │ ├── bubble_arrow_up.png
│ │ ├── button_compat_shape.xml
│ │ ├── color_button_background.xml
│ │ ├── color_picker_advanced_select_handle.png
│ │ ├── color_picker_border.xml
│ │ ├── dropdown_label_color.xml
│ │ ├── dropdown_popup_background.xml
│ │ ├── dropdown_popup_background_down.9.png
│ │ ├── dropdown_popup_background_up.9.png
│ │ ├── ic_menu_share_holo_light.png
│ │ ├── ic_search.png
│ │ ├── ic_warning.png
│ │ ├── ondemand_overlay.9.png
│ │ └── verify_checkmark.png
│ │ ├── layout-land
│ │ └── date_time_picker_dialog.xml
│ │ ├── layout-v17
│ │ ├── autofill_keyboard_accessory_item.xml
│ │ ├── color_picker_advanced_component.xml
│ │ ├── color_picker_dialog_content.xml
│ │ ├── color_picker_dialog_title.xml
│ │ ├── date_time_suggestion.xml
│ │ ├── dropdown_item.xml
│ │ ├── multi_field_time_picker_dialog.xml
│ │ ├── two_field_date_picker.xml
│ │ └── validation_message_bubble.xml
│ │ ├── layout
│ │ ├── autofill_keyboard_accessory_icon.xml
│ │ ├── autofill_keyboard_accessory_item.xml
│ │ ├── color_picker_advanced_component.xml
│ │ ├── color_picker_dialog_content.xml
│ │ ├── color_picker_dialog_title.xml
│ │ ├── date_time_picker_dialog.xml
│ │ ├── date_time_suggestion.xml
│ │ ├── dropdown_item.xml
│ │ ├── multi_field_time_picker_dialog.xml
│ │ ├── two_field_date_picker.xml
│ │ └── validation_message_bubble.xml
│ │ ├── menu
│ │ └── select_action_menu.xml
│ │ ├── raw
│ │ ├── contacts_api.js
│ │ ├── device_capabilities_api.js
│ │ ├── empty.wav
│ │ ├── icudtl.dat
│ │ ├── launch_screen_api.js
│ │ ├── messaging_api.js
│ │ ├── wifidirect_api.js
│ │ └── xwalk.pak
│ │ ├── values-am
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-ar
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-bg
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-ca
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-cs
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-da
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-de
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-el
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-en-rGB
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-es-rUS
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-es
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-fa
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-fi
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-fr
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-hi
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-hr
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-hu
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-in
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-it
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-iw
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-ja
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-ko
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-lt
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-lv
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-nb
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-nl
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-pl
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-pt-rBR
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-pt-rPT
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-ro
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-ru
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-sk
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-sl
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-sr
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-sv
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-sw
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-th
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-tl
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-tr
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-uk
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-v17
│ │ ├── styles.xml
│ │ └── ui_java_styles.xml
│ │ ├── values-v21
│ │ ├── styles.xml
│ │ └── ui_java_styles.xml
│ │ ├── values-vi
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-zh-rCN
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ ├── values-zh-rTW
│ │ ├── android_content_strings.xml
│ │ └── android_ui_strings.xml
│ │ └── values
│ │ ├── android_content_strings.xml
│ │ ├── android_ui_strings.xml
│ │ ├── android_xwalk_strings.xml
│ │ ├── attrs.xml
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ ├── styles.xml
│ │ ├── ui_java_attrs.xml
│ │ ├── ui_java_dimens.xml
│ │ ├── ui_java_strings.xml
│ │ ├── ui_java_styles.xml
│ │ ├── values.xml
│ │ ├── xwalk_app_strings.xml
│ │ ├── xwalk_core_internal_java_strings.xml
│ │ ├── xwalk_core_java_strings.xml
│ │ └── xwalk_resources_list.xml
│ └── test
│ └── java
│ └── android
│ └── space
│ └── lingen
│ └── crosswalk
│ └── ExampleUnitTest.java
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── sample_webivew_android.iml
└── settings.gradle
/.gitignore:
--------------------------------------------------------------------------------
1 | # Built application files
2 | *.apk
3 | *.ap_
4 |
5 | # Files for the Dalvik VM
6 | *.dex
7 |
8 | # Java class files
9 | *.class
10 |
11 | # Generated files
12 | bin/
13 | gen/
14 |
15 | # Gradle files
16 | .gradle/
17 | build/
18 |
19 | # Local configuration file (sdk path, etc)
20 | local.properties
21 |
22 | # Proguard folder generated by Eclipse
23 | proguard/
24 |
25 | # Log Files
26 | *.log
27 |
28 | # Android Studio Navigation editor temp files
29 | .navigation/
30 |
31 | # Android Studio captures folder
32 | captures/
33 |
--------------------------------------------------------------------------------
/.idea/.name:
--------------------------------------------------------------------------------
1 | sample_webivew_android
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
25 |
26 |
--------------------------------------------------------------------------------
/.idea/libraries/animated_vector_drawable_23_4_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/.idea/libraries/appcompat_v7_23_4_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/.idea/libraries/hamcrest_core_1_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/.idea/libraries/junit_4_12.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/.idea/libraries/support_annotations_23_4_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/.idea/libraries/support_v4_23_4_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/.idea/libraries/support_vector_drawable_23_4_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/.idea/libraries/tbs_sdk_v1_5_1_1057_25436_obfs_20160331_144900.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/.idea/libraries/xwalk_core_library_java.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Android WebView的几种选择对比
2 |
3 | 现在的移动开发,一个明显的趋势是HTML占据了越来越重要的位置,H5不再是简单的一个浏览网页的行为,在非常多的APP中,它承担了许多原本许要原生开发的功能;Android的H5支持则是个比较头痛的事情
4 |
5 |
6 |
7 | 笔者在进行IOS开发时,WebView从来都不是问题,在IOS上不仅WebView统一,而且性能极佳,也很少需要考虑兼容性问题;
8 |
9 | 但这个问题在Android上则表现的非常不一样,由于机型众多,WebView的内核众多,不同手机的WebView的兼容性,性能相差也比较大,如果你的APP在Android上对H5有较高需求,你就需要一个好的解决方案
10 |
11 | >笔者现在所在的公司所负责开发的APP,就是一款企业级APP,由于需要对接企业开发的各式各样的H5的业务系统,因此在H5方面要求较高;也因此笔者对这一方面了解稍等有一点
12 |
13 | Android WebView的选择有三种方案,分别是
14 |
15 | 1. 使用Android系统自带的WebView
16 | 2. 使用X5内核的WebView
17 | 3. 使用基于chrome webkit的crosswalk WebView
18 |
19 | 如上述三种方案,第1个是最原始的解决方案,第2,3个则分别是腾讯,corsswalk的解决方案
20 |
21 | 几种方案的对照如下表:
22 |
23 | | 方案 | 方案说明| 实际效果 | 优缺点 | html5test分数|
24 | |----------|---------|--------|-------|-------|
25 | | 系统自带WebView | Android默认 | 最差 | 优:没有额外的JAR及负担,原生API 缺: 兼容性,性能在不同手机上显示差别很大 | 最差 |
26 | | X5 WebView | 腾讯产品,微信,QQ浏览器就是使用X5内核 | 一般 | 优:提供了一个兼容性的解决方案,且微信,QQ浏览器都在用,可信度高 缺: 解决的能力一般,而且某些方面反而加大了开发工作量;而且不支持cordova | 一般|
27 | | crosswalk | 国外为Android提供的一个融合chrome webkit的解决方案 | 最佳 | 优:没有兼容性,性能问题,且支持corodva 缺:18M的包,而且区分不同的arm,x86等CPU | 较佳
28 |
29 | 笔者有一个较老的华为荣耀3C手机,购置于3年前,分别使用系统自带的WebView,X5 WebView,Crosswalk三种模式访问html5test网站,得出的评分结果分别是:
30 |
31 | > 系统自带的WebView
32 | 
33 |
34 | > X5内核WebView
35 | 
36 |
37 | > Crosswalk WebView
38 | 
39 |
40 |
41 | 如上所述,crosswalk的效果是显而易见;笔者所有公司的APP项目也是使用crosswalk做为Android WebView
42 |
43 | 1. 使用Chrome Webkit内核,兼容性不存在任何问题
44 | 2. 性能佳
45 | 3. 支持cordova
46 | 4. 支持前端人员可以在PC Chrome上联调
47 |
48 | 不足:
49 |
50 | 1. APP包增加了至少18M
51 | 2. 不同的CPU系统的包完全不同,笔者APP只支持arm,如果你还要支持X86 CPU,你还得加18M的大小,或者分2个APP
52 |
53 |
54 | 而X5做为腾讯的一款产品,主要目标也是解决兼容性问题,从分数上看,它在H5的支持度上并没有太多的改善;但兼容性方面应该有比较好的改善,同时有微信和QQ浏览器做支撑,也是一个比较好的选择
55 |
56 | 因此,笔者最终建议如下:
57 |
58 | 1. 你的APP对WebView需求不高,以纯原生为主,那就不用考虑WebView的兼容性及性能问题,使用系统自带的WebView就可以了
59 | 2. 如果你的APP有大量使用到WebView,加载一些H5网页,但在cordova等其它方面有要求,使用X5是一个比较好的选择,毕竟腾讯的实力摆在那,有问题你可以说,微信也是这样的(这个话非常有杀伤力)
60 | 3. 类似笔者公司这样的APP,对H5有非常高的要求,大量的业务系统是由H5完成,且需要cordova与原生进行大量的交互 ,那这种情况下,crosswalk是我们唯一的选择,虽然加大了18M,但带来的好处是显而易见的
61 |
62 |
--------------------------------------------------------------------------------
/WebViewDemo.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | android {
4 | compileSdkVersion 23
5 | buildToolsVersion "23.0.3"
6 |
7 | defaultConfig {
8 | applicationId "android.space.lingen.webviewdemo"
9 | minSdkVersion 15
10 | targetSdkVersion 23
11 | versionCode 1
12 | versionName "1.0"
13 | }
14 | buildTypes {
15 | release {
16 | minifyEnabled false
17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18 | }
19 | }
20 | }
21 |
22 | dependencies {
23 | compile fileTree(dir: 'libs', include: ['*.jar'])
24 | testCompile 'junit:junit:4.12'
25 | compile 'com.android.support:appcompat-v7:23.4.0'
26 |
27 | compile project(':crosswalk')
28 | }
29 |
--------------------------------------------------------------------------------
/app/libs/tbs_sdk_v1.5.1.1057_25436_obfs_20160331_144900.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/app/libs/tbs_sdk_v1.5.1.1057_25436_obfs_20160331_144900.jar
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /Users/lingen/Library/Android/sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/app/src/androidTest/java/android/space/lingen/webviewdemo/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.webviewdemo;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/app/src/main/java/android/space/lingen/webviewdemo/Main/BaseFragmentActivity.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.webviewdemo.Main;
2 |
3 | import android.content.Intent;
4 | import android.os.Bundle;
5 | import android.space.lingen.webviewdemo.Main.webview.MainActivity;
6 | import android.space.lingen.webviewdemo.R;
7 | import android.support.annotation.Nullable;
8 | import android.support.v4.app.Fragment;
9 | import android.support.v7.app.AppCompatActivity;
10 | import android.view.View;
11 | import android.widget.ImageButton;
12 |
13 | /**
14 | * Created by lingen on 5/15/16.
15 | */
16 | public abstract class BaseFragmentActivity extends AppCompatActivity{
17 |
18 |
19 | private ImageButton homeButton;
20 |
21 | @Override
22 | protected void onCreate(@Nullable Bundle savedInstanceState) {
23 | super.onCreate(savedInstanceState);
24 | setContentView(R.layout.activity_main);
25 |
26 |
27 | if (findViewById(R.id.fragment_common) != null){
28 | if (savedInstanceState != null){
29 | return;
30 | }
31 |
32 | Fragment fragment = getFragment();
33 | getSupportFragmentManager().beginTransaction().add(R.id.fragment_common,fragment).commit();
34 |
35 | this.homeButton = (ImageButton) findViewById(R.id.webview_home);
36 |
37 |
38 | this.homeButton.setOnClickListener(new View.OnClickListener() {
39 | @Override
40 | public void onClick(View v) {
41 | Intent intent = new Intent();
42 | intent.setClass(getBaseContext(), MainActivity.class);
43 |
44 | startActivity(intent);
45 | }
46 | });
47 | }
48 |
49 | }
50 |
51 | public abstract Fragment getFragment();
52 | }
53 |
--------------------------------------------------------------------------------
/app/src/main/java/android/space/lingen/webviewdemo/Main/webview/MainActivity.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.webviewdemo.Main.webview;
2 |
3 | import android.content.Intent;
4 | import android.os.Bundle;
5 | import android.space.lingen.webviewdemo.Main.webview.activity.CrosswalkWebViewActivity;
6 | import android.space.lingen.webviewdemo.Main.webview.activity.OrignalWebViewActivity;
7 | import android.space.lingen.webviewdemo.Main.webview.activity.X5WebViewActivity;
8 | import android.space.lingen.webviewdemo.R;
9 | import android.support.annotation.Nullable;
10 | import android.support.v7.app.AppCompatActivity;
11 | import android.view.View;
12 | import android.widget.Button;
13 | import android.widget.ImageButton;
14 |
15 | import java.util.zip.CRC32;
16 |
17 | /**
18 | * Created by lingen on 5/15/16.
19 | */
20 | public class MainActivity extends AppCompatActivity {
21 |
22 |
23 | //原生浏览器WEBVIEW
24 | private Button orignalWebViewButton;
25 |
26 | //X5内核WEBVIEW
27 | private Button x5WebViewButton;
28 |
29 | //crosswalk WebView
30 | private Button crosswalkButton;
31 |
32 |
33 |
34 | @Override
35 | protected void onCreate(@Nullable Bundle savedInstanceState) {
36 |
37 | super.onCreate(savedInstanceState);
38 | setContentView(R.layout.activity_navigation);
39 | findView();
40 | registerListener();
41 |
42 | }
43 |
44 |
45 | private void findView(){
46 | this.orignalWebViewButton = (Button) findViewById(R.id.button_original);
47 |
48 | this.x5WebViewButton = (Button) findViewById(R.id.button_x5);
49 |
50 | this.crosswalkButton = (Button) findViewById(R.id.button_crosswalk);
51 |
52 |
53 | }
54 |
55 | private void registerListener(){
56 | this.orignalWebViewButton.setOnClickListener(new View.OnClickListener() {
57 | @Override
58 | public void onClick(View v) {
59 | Intent intent = new Intent();
60 | intent.setClass(getBaseContext(),OrignalWebViewActivity.class);
61 | MainActivity.this.startActivity(intent);
62 | }
63 | });
64 |
65 | this.x5WebViewButton.setOnClickListener(new View.OnClickListener() {
66 | @Override
67 | public void onClick(View v) {
68 | Intent intent = new Intent();
69 | intent.setClass(getBaseContext(),X5WebViewActivity.class);
70 | MainActivity.this.startActivity(intent);
71 |
72 | }
73 | });
74 |
75 | this.crosswalkButton.setOnClickListener(new View.OnClickListener() {
76 | @Override
77 | public void onClick(View v) {
78 | Intent intent = new Intent();
79 | intent.setClass(getBaseContext(),CrosswalkWebViewActivity.class);
80 | MainActivity.this.startActivity(intent);
81 |
82 | }
83 | });
84 |
85 |
86 | }
87 | }
88 |
--------------------------------------------------------------------------------
/app/src/main/java/android/space/lingen/webviewdemo/Main/webview/activity/CrosswalkWebViewActivity.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.webviewdemo.Main.webview.activity;
2 |
3 | import android.space.lingen.webviewdemo.Main.BaseFragmentActivity;
4 | import android.space.lingen.webviewdemo.Main.webview.fragment.CrosswalkWebViewFragment;
5 | import android.support.v4.app.Fragment;
6 |
7 | /**
8 | * Created by lingen on 5/15/16.
9 | */
10 | public class CrosswalkWebViewActivity extends BaseFragmentActivity {
11 | @Override
12 | public Fragment getFragment() {
13 | return new CrosswalkWebViewFragment();
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/app/src/main/java/android/space/lingen/webviewdemo/Main/webview/activity/OrignalWebViewActivity.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.webviewdemo.Main.webview.activity;
2 |
3 | import android.space.lingen.webviewdemo.Main.BaseFragmentActivity;
4 | import android.space.lingen.webviewdemo.Main.webview.fragment.OrignalWebViewFragment;
5 | import android.support.v4.app.Fragment;
6 |
7 | /**
8 | * Created by lingen on 5/15/16.
9 | */
10 | public class OrignalWebViewActivity extends BaseFragmentActivity {
11 | @Override
12 | public Fragment getFragment() {
13 | return new OrignalWebViewFragment();
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/app/src/main/java/android/space/lingen/webviewdemo/Main/webview/activity/X5WebViewActivity.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.webviewdemo.Main.webview.activity;
2 |
3 | import android.space.lingen.webviewdemo.Main.BaseFragmentActivity;
4 | import android.space.lingen.webviewdemo.Main.webview.fragment.X5WebViewFrament;
5 | import android.support.v4.app.Fragment;
6 |
7 | /**
8 | * Created by lingen on 5/15/16.
9 | */
10 | public class X5WebViewActivity extends BaseFragmentActivity {
11 | @Override
12 | public Fragment getFragment() {
13 | return new X5WebViewFrament();
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/app/src/main/java/android/space/lingen/webviewdemo/Main/webview/fragment/CrosswalkWebViewFragment.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.webviewdemo.Main.webview.fragment;
2 |
3 | import android.os.Bundle;
4 | import android.space.lingen.webviewdemo.R;
5 | import android.support.annotation.Nullable;
6 | import android.support.v4.app.Fragment;
7 | import android.view.LayoutInflater;
8 | import android.view.View;
9 | import android.view.ViewGroup;
10 |
11 | import org.xwalk.core.XWalkView;
12 |
13 | /**
14 | * Created by lingen on 5/15/16.
15 | */
16 | public class CrosswalkWebViewFragment extends Fragment {
17 |
18 |
19 | private XWalkView webView;
20 | @Nullable
21 | @Override
22 | public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
23 | View view = inflater.inflate(R.layout.fragement_corsswalk_webview,container,false);
24 | findView(view);
25 | return view;
26 | }
27 |
28 | private void findView(View view){
29 | this.webView = (XWalkView) view.findViewById(R.id.webview_crosswalk);
30 |
31 |
32 | }
33 |
34 | @Override
35 | public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
36 | this.webView.load("http://html5test.com",null);
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/app/src/main/java/android/space/lingen/webviewdemo/Main/webview/fragment/OrignalWebViewFragment.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.webviewdemo.Main.webview.fragment;
2 |
3 | import android.os.Bundle;
4 | import android.space.lingen.webviewdemo.R;
5 | import android.support.annotation.Nullable;
6 | import android.support.v4.app.Fragment;
7 | import android.view.LayoutInflater;
8 | import android.view.View;
9 | import android.view.ViewGroup;
10 | import android.webkit.WebView;
11 | import android.webkit.WebViewClient;
12 |
13 | /**
14 | * Created by lingen on 5/15/16.
15 | */
16 | public class OrignalWebViewFragment extends Fragment {
17 |
18 | private WebView webView;
19 |
20 | @Nullable
21 | @Override
22 | public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
23 | View view = inflater.inflate(R.layout.fragment_orignal_webview, container, false);
24 | findView(view);
25 | return view;
26 | }
27 |
28 | private void findView(View view){
29 | this.webView = (WebView) view.findViewById(R.id.webview_original);
30 |
31 | this.webView.getSettings().setJavaScriptEnabled(true);
32 | this.webView.setWebViewClient(new WebViewClient(){
33 | @Override
34 | public boolean shouldOverrideUrlLoading(WebView view, String url) {
35 | webView.loadUrl(url);
36 | return true;
37 | }
38 | });
39 | }
40 |
41 | @Override
42 | public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
43 | this.webView.loadUrl("http://html5test.com");
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/app/src/main/java/android/space/lingen/webviewdemo/Main/webview/fragment/X5WebViewFrament.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.webviewdemo.Main.webview.fragment;
2 |
3 | import android.os.Bundle;
4 | import android.space.lingen.webviewdemo.R;
5 | import android.support.annotation.Nullable;
6 | import android.support.v4.app.Fragment;
7 | import android.view.LayoutInflater;
8 | import android.view.View;
9 | import android.view.ViewGroup;
10 |
11 | import com.tencent.smtt.sdk.WebView;
12 | import com.tencent.smtt.sdk.WebViewClient;
13 |
14 | /**
15 | * Created by lingen on 5/15/16.
16 | */
17 | public class X5WebViewFrament extends Fragment {
18 |
19 | private WebView webView;
20 |
21 | @Nullable
22 | @Override
23 | public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
24 | View view = inflater.inflate(R.layout.fragement_x5_webview,container,false);
25 | findView(view);
26 | return view;
27 | }
28 |
29 | private void findView(View view){
30 | this.webView = (WebView) view.findViewById(R.id.webview_x5);
31 | this.webView.getSettings().setJavaScriptEnabled(true);
32 | this.webView.setWebViewClient(new WebViewClient(){
33 | @Override
34 | public boolean shouldOverrideUrlLoading(WebView webView, String s) {
35 | webView.loadUrl(s);
36 | return true;
37 | }
38 | });
39 | }
40 |
41 | @Override
42 | public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
43 | this.webView.loadUrl("http://html5test.com");
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
12 |
13 |
24 |
25 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_navigation.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
13 |
14 |
15 |
23 |
24 |
32 |
33 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragement_corsswalk_webview.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragement_x5_webview.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_orignal_webview.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/app/src/main/res/mipmap-xxhdpi/home.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | WebViewDemo
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/test/java/android/space/lingen/webviewdemo/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.webviewdemo;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.1.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/crosswalk/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/crosswalk/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.library'
2 |
3 | android {
4 | compileSdkVersion 23
5 | buildToolsVersion "23.0.3"
6 |
7 | defaultConfig {
8 | minSdkVersion 15
9 | targetSdkVersion 23
10 | versionCode 1
11 | versionName "1.0"
12 | }
13 | buildTypes {
14 | release {
15 | minifyEnabled false
16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17 | }
18 | }
19 | }
20 |
21 | dependencies {
22 | compile fileTree(dir: 'libs', include: ['*.jar'])
23 | testCompile 'junit:junit:4.12'
24 | compile 'com.android.support:appcompat-v7:23.4.0'
25 | }
26 |
--------------------------------------------------------------------------------
/crosswalk/libs/xwalk_core_library_java.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/libs/xwalk_core_library_java.jar
--------------------------------------------------------------------------------
/crosswalk/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /Users/lingen/Library/Android/sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/crosswalk/src/androidTest/java/android/space/lingen/crosswalk/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.crosswalk;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/crosswalk/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/crosswalk/src/main/jniLibs/armeabi-v7a/libxwalkcore.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/jniLibs/armeabi-v7a/libxwalkcore.so
--------------------------------------------------------------------------------
/crosswalk/src/main/jniLibs/armeabi-v7a/libxwalkdummy.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/jniLibs/armeabi-v7a/libxwalkdummy.so
--------------------------------------------------------------------------------
/crosswalk/src/main/jniLibs/armeabi-v7a/native_lib_placeholder.stamp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/jniLibs/armeabi-v7a/native_lib_placeholder.stamp
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-hdpi/bubble.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-hdpi/bubble.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-hdpi/bubble_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-hdpi/bubble_arrow_up.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-hdpi/color_picker_advanced_select_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-hdpi/color_picker_advanced_select_handle.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-hdpi/dropdown_popup_background_down.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-hdpi/dropdown_popup_background_down.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-hdpi/dropdown_popup_background_up.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-hdpi/dropdown_popup_background_up.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-hdpi/ic_menu_share_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-hdpi/ic_menu_share_holo_light.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-hdpi/ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-hdpi/ic_search.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-hdpi/ic_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-hdpi/ic_warning.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-hdpi/ondemand_overlay.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-hdpi/ondemand_overlay.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-hdpi/verify_checkmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-hdpi/verify_checkmark.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-v21/button_borderless_compat.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
10 |
11 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-v21/button_compat.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xhdpi/bubble.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xhdpi/bubble.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xhdpi/bubble_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xhdpi/bubble_arrow_up.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xhdpi/color_picker_advanced_select_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xhdpi/color_picker_advanced_select_handle.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xhdpi/dropdown_popup_background_down.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xhdpi/dropdown_popup_background_down.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xhdpi/dropdown_popup_background_up.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xhdpi/dropdown_popup_background_up.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xhdpi/ic_menu_share_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xhdpi/ic_menu_share_holo_light.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xhdpi/ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xhdpi/ic_search.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xhdpi/ic_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xhdpi/ic_warning.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xhdpi/ondemand_overlay.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xhdpi/ondemand_overlay.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xhdpi/verify_checkmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xhdpi/verify_checkmark.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xxhdpi/ic_menu_share_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xxhdpi/ic_menu_share_holo_light.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xxhdpi/ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xxhdpi/ic_search.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xxhdpi/ic_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xxhdpi/ic_warning.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xxhdpi/verify_checkmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xxhdpi/verify_checkmark.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xxxhdpi/ic_menu_share_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xxxhdpi/ic_menu_share_holo_light.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xxxhdpi/ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xxxhdpi/ic_search.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xxxhdpi/ic_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xxxhdpi/ic_warning.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable-xxxhdpi/verify_checkmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable-xxxhdpi/verify_checkmark.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/autofill_chip_inset.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/bubble.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable/bubble.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/bubble_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable/bubble_arrow_up.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/button_compat_shape.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/color_button_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 | -
14 |
15 |
16 |
17 |
18 | -
22 |
23 |
24 |
25 |
26 | -
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/color_picker_advanced_select_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable/color_picker_advanced_select_handle.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/color_picker_border.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/dropdown_label_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/dropdown_popup_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
10 |
12 |
13 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/dropdown_popup_background_down.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable/dropdown_popup_background_down.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/dropdown_popup_background_up.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable/dropdown_popup_background_up.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/ic_menu_share_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable/ic_menu_share_holo_light.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable/ic_search.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/ic_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable/ic_warning.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/ondemand_overlay.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable/ondemand_overlay.9.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/drawable/verify_checkmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/drawable/verify_checkmark.png
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout-land/date_time_picker_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
12 |
13 |
19 |
20 |
30 |
31 |
39 |
40 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout-v17/autofill_keyboard_accessory_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
12 |
13 |
27 |
28 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout-v17/color_picker_advanced_component.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
11 |
19 |
20 |
30 |
31 |
35 |
36 |
37 |
45 |
46 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout-v17/color_picker_dialog_content.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
14 |
17 |
18 |
22 |
23 |
24 |
34 |
35 |
41 |
42 |
50 |
51 |
52 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout-v17/color_picker_dialog_title.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
14 |
15 |
25 |
26 |
33 |
34 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout-v17/date_time_suggestion.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
24 |
35 |
36 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout-v17/dropdown_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
14 |
15 |
16 |
23 |
24 |
36 |
37 |
49 |
50 |
51 |
57 |
58 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout-v17/two_field_date_picker.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
13 |
14 |
15 |
16 |
25 |
26 |
27 |
28 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout-v17/validation_message_bubble.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
11 |
12 |
19 |
20 |
25 |
26 |
33 |
34 |
35 |
36 |
45 |
46 |
53 |
54 |
61 |
62 |
69 |
70 |
71 |
72 |
73 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout/autofill_keyboard_accessory_icon.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
13 |
14 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout/autofill_keyboard_accessory_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout/color_picker_advanced_component.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout/color_picker_dialog_content.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout/color_picker_dialog_title.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout/date_time_picker_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
12 |
13 |
19 |
20 |
30 |
31 |
39 |
40 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout/date_time_suggestion.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout/dropdown_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout/two_field_date_picker.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/layout/validation_message_bubble.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/menu/select_action_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
10 |
55 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/raw/empty.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/raw/empty.wav
--------------------------------------------------------------------------------
/crosswalk/src/main/res/raw/icudtl.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/raw/icudtl.dat
--------------------------------------------------------------------------------
/crosswalk/src/main/res/raw/launch_screen_api.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2014 Intel Corporation. All rights reserved.
3 | * Use of this source code is governed by a BSD-style license that can be
4 | * found in the LICENSE file.
5 | */
6 |
7 | window.screen.show = function() {
8 | extension.postMessage("hideLaunchScreen");
9 | };
10 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/raw/xwalk.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/crosswalk/src/main/res/raw/xwalk.pak
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-am/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "አጋራ"
4 | "የድር ፍለጋ"
5 | "የጽሑፍ ምርጫ"
6 | "ቪዲዮ ማጫወት አልተቻለም"
7 | "ይቅርታ፣ ይህ ቪዲዮ ወደዚህ መሣሪያ በዥረት ለመልቀቅ ልክ የሆነ አይደለም።"
8 | "ይቅርታ፣ ይህ ቪዲዮ ሊጫወት አልቻለም።"
9 | "ይሁን"
10 | "ቪዲዮን በመጫን ላይ"
11 | "መገለጫ ሰሪ ተጀምሯል"
12 | "መግለጫ ሰሪ ተጠናቅቋል። ውጤቶች በ%1$s ውስጥ ናቸው።"
13 | "ውጫዊ ማከማቻ ዝግጁ ስላልሆነ መገለጫ ሰሪውን ማስጀመር አልተቻለም"
14 | "መገለጫ ሰሪውን ማስጀመር አልተሳካም"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-am/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "በአነስተኛ ማህደረ ትውስታ ምክንያት ቀዳሚውን ክወና ማጠናቀቅ አልተቻለም"
4 | "የተመረጠውን ፋይል መክፈት አልተሳካም"
5 | "ተጨማሪ"
6 | "ለይ ቀለም"
7 | "የቀለም ሙሌት"
8 | "እሴት"
9 | "አዘጋጅ"
10 | "ይቅር"
11 | "ቀለም ይምረጡ"
12 | "ቀይ"
13 | "ውሃ ሰማያዊ"
14 | "ሰማያዊ"
15 | "አረንጓዴ"
16 | "ሮዝ"
17 | "ቢጫ"
18 | "ጥቁር"
19 | "ነጭ"
20 | "ወደ ቅንጥብ ሰሌዳው መቅዳት አልተሳካም"
21 | "ወር"
22 | "ዓመት"
23 | "አዘጋጅ"
24 | "ወር ያዘጋጁ"
25 | "ሳምንት"
26 | "ሳምንት ያዘጋጁ"
27 | "ጥዋት"
28 | "ከሰዓት"
29 | "ሰዓት ያዘጋጁ"
30 | "ሰዓት"
31 | "ደቂቃ"
32 | "ሰከንድ"
33 | "ሚሊሰከንድ"
34 | "ጥዋት/ከሰዓት"
35 | ":"
36 | ":"
37 | "."
38 | "ቀን እና ሰዓት ያዘጋጁ"
39 | "ቀን"
40 | "ሰዓት"
41 | "ሌላ"
42 | "ቀን ያዘጋጁ"
43 | "አጽዳ"
44 | "ራስ-ሙላ ብቅባይ በማሳየት ላይ"
45 | "የይለፍ ቃል ማመንጨት ብቅ ይን በማሳየት ላይ"
46 | "የሚገኙ የአስተያየት ጥቆማዎች"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-ar/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "مشاركة"
4 | "بحث الويب"
5 | "تحديد النص"
6 | "لا يمكن تشغيل الفيديو"
7 | "عذرًا، هذا الفيديو غير صالح للبث إلى هذا الجهاز."
8 | "عذرًا، لا يمكن تشغيل هذا الفيديو."
9 | "موافق"
10 | "تحميل الفيديو"
11 | "تم بدء المحلل"
12 | "انتهى المحلل. توجد النتائج في %1$s."
13 | "لا يمكن بدء المحلل لأن وحدة التخزين الخارجية غير جاهزة"
14 | "أخفق بدء المحلل"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-ar/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "تعذر إكمال العملية السابقة نظرًا لانخفاض الذاكرة"
4 | "أخفق فتح الملف المحدد"
5 | "المزيد"
6 | "تدرج اللون"
7 | "تشبع اللون"
8 | "القيمة"
9 | "تعيين"
10 | "إلغاء"
11 | "اختيار اللون"
12 | "أحمر"
13 | "سماوي"
14 | "أزرق"
15 | "أخضر"
16 | "أرجواني"
17 | "أصفر"
18 | "أسود"
19 | "أبيض"
20 | "أخفق النسخ إلى الحافظة"
21 | "شهر"
22 | "عام"
23 | "تعيين"
24 | "تعيين الشهر"
25 | "الأسبوع"
26 | "تعيين الأسبوع"
27 | "صباحًا"
28 | "مساءً"
29 | "تعيين الوقت"
30 | "الساعات"
31 | "الدقائق"
32 | "الثواني"
33 | "مللي ثانية"
34 | "صباحًا/مساءً"
35 | ":"
36 | ":"
37 | "."
38 | "تعيين التاريخ والوقت"
39 | "التاريخ"
40 | "الوقت"
41 | "أخرى"
42 | "تعيين التاريخ"
43 | "محو"
44 | "عرض نافذة الملء التلقائي المنبثقة"
45 | "عرض نافذة إنشاء كلمة المرور المنبثقة"
46 | "الاقتراحات المتاحة"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-bg/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Споделяне"
4 | "Търсене в мрежата"
5 | "Избиране на текст"
6 | "Видеоклипът не може да се пусне"
7 | "За съжаление този видеоклип не е валиден за поточно предаване към устройството."
8 | "За съжаление този видеоклип не може да се пусне."
9 | "OK"
10 | "Клип: Зарежда се"
11 | "Профайлерът стартира"
12 | "Профайлерът приключи. Резултатите са в/ъв „%1$s“."
13 | "Не можем да стартираме профайлера, защото външното хранилище не е готово"
14 | "Стартирането на профайлера не бе успешно"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-ca/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Comparteix"
4 | "Cerca al web"
5 | "Selecció de text"
6 | "No es pot reproduir el vídeo"
7 | "Aquest vídeo no és vàlid per reproduir-lo en temps real en aquest dispositiu."
8 | "No es pot reproduir aquest vídeo."
9 | "D\'acord"
10 | "Carregant vídeo"
11 | "El generador de perfils s\'ha iniciat."
12 | "El generador de perfils ha finalitzat. Els resultats són a %1$s."
13 | "No es pot iniciar el generador de perfils perquè l\'emmagatzematge extern no està preparat."
14 | "S\'ha produït un error en iniciar el generador de perfils."
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-cs/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Sdílet"
4 | "Vyhledávání na webu"
5 | "Výběr textu"
6 | "Video nelze přehrát"
7 | "Video do zařízení nelze streamovat."
8 | "Toto video nelze přehrát."
9 | "OK"
10 | "Načítání videa"
11 | "Nástroj profiler byl spuštěn"
12 | "Nástroj profiler byl ukončen. Výsledky naleznete v souboru %1$s."
13 | "Nástroj profiler nelze spustit, protože externí zařízení není připraveno"
14 | "Spuštění nástroje profiler se nezdařilo"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-da/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Del"
4 | "Websøgning"
5 | "Tekstvalg"
6 | "Videoen kan ikke afspilles"
7 | "Denne video er ikke gyldig til streaming på denne enhed."
8 | "Denne video kan ikke afspilles."
9 | "OK"
10 | "Videoen indlæses"
11 | "Profileringsværktøjet er startet"
12 | "Profileringsværktøjet er færdigt. Resultaterne er i %1$s."
13 | "Profileringsværktøjet kan ikke startes, fordi det eksterne lager ikke er klar"
14 | "Profileringsværktøjet kunne ikke startes"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-de/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Teilen"
4 | "Websuche"
5 | "Textauswahl"
6 | "Videowiedergabe nicht möglich"
7 | "Leider ist dieses Video nicht für Streaming auf diesem Gerät gültig."
8 | "Dieses Video kann leider nicht abgespielt werden."
9 | "OK"
10 | "Video wird geladen"
11 | "Profiler gestartet"
12 | "Profiler ist fertig. Die Ergebnisse befinden sich in der Datei %1$s."
13 | "Profiler kann nicht gestartet werden, da der externe Speicher nicht bereit ist."
14 | "Profiler konnte nicht gestartet werden."
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-el/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Κοινή χρήση"
4 | "Αναζήτηση στον Ιστό"
5 | "Επιλογή κειμένου"
6 | "Αδύνατη αναπαραγωγή βίντεο"
7 | "Δυστυχώς, αυτό το βίντεο δεν είναι έγκυρο για ροή σε αυτήν τη συσκευή."
8 | "Δυστυχώς, δεν είναι δυνατή η αναπαραγωγή αυτού του βίντεο."
9 | "OK"
10 | "Φόρτωση βίντεο"
11 | "Η λειτουργία του προγράμματος προφίλ έχει ξεκινήσει"
12 | "Η λειτουργία του προγράμματος προφίλ ολοκληρώθηκε. Τα αποτελέσματα βρίσκονται στο αρχείο %1$s."
13 | "Δεν είναι δυνατή η έναρξη του προγράμματος προφίλ επειδή ο εξωτερικός χώρος αποθήκευσης δεν είναι έτοιμος"
14 | "Αποτυχία έναρξης προγράμματος προφίλ"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-en-rGB/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Share"
4 | "Web search"
5 | "Text selection"
6 | "Cannot play video"
7 | "Sorry, this video is not valid for streaming to this device."
8 | "Sorry, this video cannot be played."
9 | "OK"
10 | "Loading video"
11 | "Profiler started"
12 | "Profiler finished. Results are in %1$s."
13 | "Can\'t start profiler because external storage is not ready"
14 | "Failed to start profiler"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-en-rGB/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Unable to complete previous operation due to low memory"
4 | "Failed to open selected file"
5 | "More"
6 | "Hue"
7 | "Saturation"
8 | "Value"
9 | "Set"
10 | "Cancel"
11 | "Select colour"
12 | "Red"
13 | "Cyan"
14 | "Blue"
15 | "Green"
16 | "Magenta"
17 | "Yellow"
18 | "Black"
19 | "White"
20 | "Failed to copy to the clipboard"
21 | "Month"
22 | "Year"
23 | "Set"
24 | "Set month"
25 | "Week"
26 | "Set week"
27 | "a.m."
28 | "p.m."
29 | "Set time"
30 | "Hour"
31 | "Minute"
32 | "Second"
33 | "Millisecond"
34 | "AM/PM"
35 | ":"
36 | ":"
37 | "."
38 | "Set date and time"
39 | "Date"
40 | "Time"
41 | "Other"
42 | "Set date"
43 | "Clear"
44 | "Showing autofill pop-up"
45 | "Showing password generation pop-up"
46 | "Suggestions available"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-es-rUS/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Compartir"
4 | "Búsqueda en la Web"
5 | "Selección de texto"
6 | "No se puede reproducir el video."
7 | "El video no se puede transmitir a este dispositivo."
8 | "El video no se puede reproducir."
9 | "Aceptar"
10 | "Cargando video"
11 | "Se inició el generador de perfiles."
12 | "El generador de perfiles terminó. Los resultados están en %1$s."
13 | "No se puede iniciar el generador de perfiles porque el almacenamiento externo no está disponible."
14 | "Error al iniciar el generador de perfiles"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-es/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Compartir"
4 | "Búsqueda web"
5 | "Selección de texto"
6 | "No se puede reproducir el vídeo."
7 | "Este vídeo no se puede reproducir en este dispositivo."
8 | "Este vídeo no se puede reproducir."
9 | "Aceptar"
10 | "Cargando vídeo"
11 | "Se ha iniciado el creador de perfiles"
12 | "El creador de perfiles ha completado la operación. Los resultados se encuentran en el archivo %1$s."
13 | "No se puede iniciar el creador de perfiles porque el almacenamiento externo no está listo"
14 | "No se ha podido iniciar el creador de perfiles"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-fa/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "اشتراکگذاری"
4 | "جستجوی وب"
5 | "انتخاب نوشتار"
6 | "ویدیو پخش نمیشود"
7 | "با عرض پوزش، این ویدیو برای پخش همزمان در این دستگاه معتبر نیست."
8 | "با عرض پوزش، این ویدیو پخش نمیشود."
9 | "تأیید"
10 | "بارگیری ویدیو"
11 | "نمایهساز اجرا شد"
12 | "نمایهساز پایان یافت. نتایج در %1$s ذخیره شدهاند."
13 | "نمایهساز اجرا نمیشود زیرا حافظه خارجی آماده نیست"
14 | "نمایهساز اجرا نشد"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-fa/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "به دلیل کم بودن حافظه، تکمیل عملیات قبلی امکانپذیر نیست"
4 | "باز کردن فایل انتخابی انجام نشد"
5 | "بیشتر"
6 | "رنگمایه"
7 | "اشباع رنگ"
8 | "مقدار"
9 | "تنظیم"
10 | "لغو"
11 | "انتخاب رنگ"
12 | "قرمز"
13 | "فیروزهای"
14 | "آبی"
15 | "سبز"
16 | "سرخابی"
17 | "زرد"
18 | "سیاه"
19 | "سفید"
20 | "کپی در کلیپ بورد ناموفق بود"
21 | "ماه"
22 | "سال"
23 | "تنظیم"
24 | "تنظیم ماه"
25 | "هفته"
26 | "تنظیم هفته"
27 | "ق.ظ"
28 | "ب.ظ"
29 | "تنظیم زمان"
30 | "ساعت"
31 | "دقیقه"
32 | "ثانیه"
33 | "میلیثانیه"
34 | "ق.ظ/ب.ظ"
35 | ":"
36 | ":"
37 | "."
38 | "تنظیم تاریخ و زمان"
39 | "تاریخ"
40 | "زمان"
41 | "دیگر"
42 | "تنظیم تاریخ"
43 | "پاک کردن"
44 | "نمایش پنجره تکمیل خودکار"
45 | "نمایش پنجره تولید گذرواژه"
46 | "پیشنهادهایی در دسترس هستند"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-fi/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Jaa"
4 | "Verkkohaku"
5 | "Tekstin valinta"
6 | "Videon toistaminen epäonnistui"
7 | "Videota ei voi suoratoistaa tällä laitteella."
8 | "Tätä videota ei voi toistaa."
9 | "OK"
10 | "Videota ladataan"
11 | "Profiiliohjelma käynnistyi"
12 | "Profiiliohjelma on valmis. Tulokset ovat tiedostossa %1$s."
13 | "Profiiliohjelmaa ei voi käynnistää, koska ulkoinen tallennustila ei ole valmis"
14 | "Profiiliohjelman käynnistys epäonnistui"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-fr/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Partager"
4 | "Recherche sur le Web"
5 | "Sélection de texte"
6 | "Impossible de lire la vidéo."
7 | "Désolé, impossible de lire cette vidéo en streaming sur cet appareil."
8 | "Désolé, impossible de lire cette vidéo."
9 | "OK"
10 | "Chargement vidéo…"
11 | "Le générateur de profils a été lancé."
12 | "Le générateur de profils a terminé sa tâche. Les résultats ont été exportés dans le fichier %1$s."
13 | "Impossible de démarrer le générateur de profils, car la mémoire de stockage externe n\'est pas disponible."
14 | "Échec du démarrage du générateur de profils."
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-hi/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "साझा करें"
4 | "वेब खोज"
5 | "लेख चयन"
6 | "वीडियो नहीं चलाया जा सकता"
7 | "क्षमा करें, यह वीडियो इस डिवाइस पर स्ट्रीम करने के लिए मान्य नहीं है."
8 | "क्षमा करें, यह वीडियो नहीं चलाया जा सकता."
9 | "ठीक"
10 | "वीडियो लोड हो रहा है"
11 | "प्रोफ़ाइलर प्रारंभ किया गया"
12 | "प्रोफ़ाइलर पूर्ण. परिणाम %1$s में हैं."
13 | "प्रोफ़ाइलर प्रारंभ नहीं हो सकता क्योंकि बाहरी मेमोरी तैयार नहीं है"
14 | "प्रोफ़ाइलर प्रारंभ करने में विफल"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-hr/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Podijeli"
4 | "Pretraživanje weba"
5 | "Odabir teksta"
6 | "Nije moguće reprod. videozapis"
7 | "Videozapis nije valjan za strujanje na uređaj."
8 | "Nije moguće reproducirati taj videozapis."
9 | "U redu"
10 | "Učitavanje videa"
11 | "Profiler se pokrenuo"
12 | "Profiler je završio. Rezultati su u datoteci %1$s."
13 | "Nije moguće pokrenuti profiler jer vanjska pohrana nije spremna"
14 | "Nije uspjelo pokretanje profilera"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-hu/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Megosztás"
4 | "Internetes keresés"
5 | "Szöveg kijelölése"
6 | "Nem lehet lejátszani a videót"
7 | "Sajnos ezt a videót nem lehet erre az eszközre sugározni."
8 | "Sajnos a videót nem lehet lejátszani."
9 | "OK"
10 | "Videó betöltése"
11 | "A profilozó elindult"
12 | "A profilozó végzett. Az eredmény a következőben található: %1$s."
13 | "Nem lehet elindítani a profilozót, mert a külső tároló nem áll készen"
14 | "Nem sikerült elindítani a profilozót"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-in/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Bagikan"
4 | "Penelusuran web"
5 | "Pemilihan teks"
6 | "Tidak dapat memutar video"
7 | "Maaf, video ini tidak dapat di-streaming ke perangkat ini."
8 | "Maaf, video tidak dapat diputar."
9 | "Oke"
10 | "Memuat video"
11 | "Profiler dimulai"
12 | "Profiler selesai. Hasil berupa %1$s."
13 | "Tidak dapat memulai profiler karena penyimpanan eksternal tidak siap"
14 | "Gagal memulai profiler"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-it/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Condividi"
4 | "Ricerca Google"
5 | "Selezione testo"
6 | "Impossibile riprodurre il video"
7 | "Spiacenti, questo video non può essere visualizzato in streaming su questo dispositivo."
8 | "Spiacenti, impossibile riprodurre il video."
9 | "OK"
10 | "Caricamento video"
11 | "Profiler avviato"
12 | "Profiler ha finito. I risultati sono in %1$s."
13 | "Impossibile avviare profiler perché la memoria esterna non è pronta"
14 | "Impossibile avviare profiler"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-iw/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "שתף"
4 | "חיפוש Google"
5 | "בחירת טקסט"
6 | "לא ניתן להפעיל את הסרטון"
7 | "מצטערים. הזרמת הסרטון הזה למכשיר הזה אינה חוקית."
8 | "מצטערים. לא ניתן להפעיל את הסרטון הזה."
9 | "אישור"
10 | "טוען סרטון"
11 | "יוצר הפרופילים הופעל"
12 | "יוצר הפרופילים סיים את פעולתו. התוצאות נמצאות ב-%1$s."
13 | "לא ניתן להפעיל את יוצר הפרופילים משום שהאחסון החיצוני אינו מוכן"
14 | "נכשלה פתיחת יוצר הפרופילים"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-iw/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "לא ניתן להשלים את הפעולה הקודמת עקב מחסור בזיכרון"
4 | "פתיחת הקובץ הנבחר נכשלה"
5 | "עוד"
6 | "גוון"
7 | "רווייה"
8 | "ערך"
9 | "הגדר"
10 | "ביטול"
11 | "בחירת צבע"
12 | "אדום"
13 | "ציאן"
14 | "כחול"
15 | "ירוק"
16 | "מגנטה"
17 | "צהוב"
18 | "שחור"
19 | "לבן"
20 | "ההעתקה אל הלוח נכשלה"
21 | "חודש"
22 | "שנה"
23 | "הגדר"
24 | "הגדרת חודש"
25 | "שבוע"
26 | "הגדרת שבוע"
27 | "AM"
28 | "PM"
29 | "הגדרת שעה"
30 | "שעה"
31 | "דקה"
32 | "שנייה"
33 | "אלפית שנייה"
34 | "AM/PM"
35 | ":"
36 | ":"
37 | "."
38 | "הגדרת תאריך ושעה"
39 | "תאריך"
40 | "שעה"
41 | "אחר"
42 | "הגדרת תאריך"
43 | "נקה"
44 | "מציג את החלון הקופץ של מילוי אוטומטי"
45 | "מציג את החלון הקופץ של יצירת סיסמה"
46 | "הצעות זמינות"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-ja/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "共有"
4 | "ウェブ検索"
5 | "テキスト選択"
6 | "動画を再生できません"
7 | "この動画はご使用のデバイスではストリーミングできません。"
8 | "この動画は再生できません。"
9 | "OK"
10 | "動画を読み込み中"
11 | "プロファイラを開始しました"
12 | "プロファイラを終了しました。結果は %1$s をご覧ください。"
13 | "外部ストレージの準備ができていないためプロファイラを開始できません"
14 | "プロファイラを開始できませんでした"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-ja/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "メモリ不足のため直前の操作を完了できません"
4 | "選択したファイルを開けません"
5 | "詳細表示"
6 | "色調"
7 | "彩度"
8 | "値"
9 | "設定"
10 | "キャンセル"
11 | "色の選択"
12 | "赤"
13 | "シアン"
14 | "青"
15 | "緑"
16 | "マゼンタ"
17 | "黄"
18 | "黒"
19 | "白"
20 | "クリップボードにコピーできませんでした"
21 | "月"
22 | "年"
23 | "設定"
24 | "月の設定"
25 | "週"
26 | "週の設定"
27 | "AM"
28 | "PM"
29 | "時間の設定"
30 | "時"
31 | "分"
32 | "秒"
33 | "ミリ秒"
34 | "AM/PM"
35 | ":"
36 | ":"
37 | "."
38 | "日時の設定"
39 | "日付"
40 | "時間"
41 | "その他"
42 | "日付の設定"
43 | "クリア"
44 | "自動入力のポップアップを表示しています"
45 | "パスワード作成のポップアップを表示しています"
46 | "候補があります"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-ko/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "공유"
4 | "웹 검색"
5 | "텍스트 선택"
6 | "동영상 재생 안됨"
7 | "죄송합니다. 이 동영상은 이 기기로 스트리밍할 수 없습니다."
8 | "동영상을 재생할 수 없습니다."
9 | "확인"
10 | "동영상 로드 중"
11 | "프로파일러가 시작되었습니다."
12 | "프로파일러가 완료되었습니다. 결과는 %1$s에 있습니다."
13 | "외부 저장소가 준비되지 않아 프로파일러를 시작할 수 없습니다."
14 | "프로파일러를 시작하지 못했습니다."
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-ko/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "메모리가 부족하여 이전 작업을 완료할 수 없습니다."
4 | "선택한 파일을 열지 못했습니다."
5 | "더보기"
6 | "색조"
7 | "채도"
8 | "값"
9 | "설정"
10 | "취소"
11 | "색상 선택"
12 | "빨간색"
13 | "청록색"
14 | "파란색"
15 | "녹색"
16 | "자홍색"
17 | "노란색"
18 | "검정색"
19 | "흰색"
20 | "클립보드로 복사하지 못했습니다."
21 | "월"
22 | "연도"
23 | "설정"
24 | "월 설정"
25 | "주"
26 | "주 설정"
27 | "오전"
28 | "오후"
29 | "시간 설정"
30 | "시"
31 | "분"
32 | "초"
33 | "밀리초"
34 | "오전/오후"
35 | ":"
36 | ":"
37 | "."
38 | "날짜 및 시간 설정"
39 | "날짜"
40 | "시간"
41 | "기타"
42 | "날짜 설정"
43 | "삭제"
44 | "자동완성 팝업 표시"
45 | "비밀번호 생성 팝업 표시"
46 | "제안 사용 가능"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-lt/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Bendrinti"
4 | "Žiniatinklio paieška"
5 | "Teksto pasirinkimas"
6 | "Nepavyksta paleisti vaizdo įrašo"
7 | "Apgailestaujame, šis vaizdo įrašas yra netinkamas perduoti srautu į šį įrenginį."
8 | "Apgailestaujame, šio vaizdo įrašo negalima paleisti."
9 | "Gerai"
10 | "Įkel. v. įrašas"
11 | "Profiliavimo priemonė paleista"
12 | "Profiliavimo priemonės veiksmai baigti. Rezultatai išsaugoti „%1$s“."
13 | "Nepavyksta paleisti profiliavimo priemonės, nes išorinė atmintis neparuošta"
14 | "Paleidžiant profiliavimo priemonę įvyko klaida"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-lv/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Kopīgot"
4 | "Meklēšana tīmeklī"
5 | "Teksta atlase"
6 | "Nevar atskaņot videoklipu."
7 | "Diemžēl šo videoklipu nevar straumēt šajā ierīcē."
8 | "Diemžēl šo videoklipu nevar atskaņot."
9 | "Labi"
10 | "Video ielāde"
11 | "Profilētājs startēts."
12 | "Profilētāja izpilde ir pabeigta. Rezultāti ir pieejami šeit: %1$s."
13 | "Nevar startēt profilētāju, jo ārējā krātuve nav gatava."
14 | "Neizdevās startēt profilētāju."
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-nb/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Del"
4 | "Nettsøk"
5 | "Tekstmarkering"
6 | "Kan ikke spille av videoen"
7 | "Beklager, videoen er ikke gyldig for strømming på denne enheten."
8 | "Beklager, videoen kan ikke spilles av."
9 | "OK"
10 | "Laster inn videoen ..."
11 | "Profileringsverktøyet har startet"
12 | "Profileringsverktøyet er ferdig. Du finner resultatene i %1$s."
13 | "Kan ikke starte profileringsverktøyet fordi ekstern lagring ikke er klar"
14 | "Kunne ikke starte profileringsverktøyet"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-nl/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Delen"
4 | "Zoeken op internet"
5 | "Tekstselectie"
6 | "Kan video niet afspelen"
7 | "Kan deze video niet streamen naar dit apparaat."
8 | "Deze video kan niet worden afgespeeld."
9 | "OK"
10 | "Video laden"
11 | "Profiler gestart"
12 | "Profiler klaar. De resultaten staan in %1$s."
13 | "Kan profiler niet starten omdat externe opslag niet gereed is"
14 | "Kan profiler niet starten"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-pl/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Udostępnij"
4 | "Wyszukaj w Google"
5 | "Zaznaczanie tekstu"
6 | "Nie można odtworzyć filmu"
7 | "Tego filmu nie można przesłać na to urządzenie."
8 | "Tego filmu nie można odtworzyć."
9 | "OK"
10 | "Wczytuję film"
11 | "Narzędzie do profilowania zostało uruchomione"
12 | "Profilowanie zakończone. Wyniki zostały zapisane w pliku %1$s."
13 | "Nie można uruchomić narzędzia do profilowania, ponieważ zewnętrzna pamięć masowa nie jest gotowa"
14 | "Nie można uruchomić narzędzia do profilowania"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-pt-rBR/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Compartilhar"
4 | "Pesquisa da Web"
5 | "Seleção de texto"
6 | "Não é possível reproduzir vídeo"
7 | "Não é possível realizar o streaming deste vídeo para este dispositivo."
8 | "Não é possível reproduzir este vídeo."
9 | "OK"
10 | "Carregando vídeo"
11 | "Profiler iniciado"
12 | "Profiler terminado. Os resultados estão em %1$s."
13 | "Não é possível iniciar o profiler porque o armazenamento externo não está pronto"
14 | "Falha ao iniciar o profiler"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-pt-rPT/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Partilhar"
4 | "Pesquisa Web"
5 | "Seleção de texto"
6 | "Impossível reproduzir vídeo"
7 | "Este vídeo não é válido para transmissão em fluxo contínuo neste dispositivo."
8 | "Não é possível reproduzir este vídeo."
9 | "OK"
10 | "A carregar vídeo"
11 | "O gerador de perfis foi iniciado"
12 | "O gerador de perfis terminou. Os resultados estão em %1$s."
13 | "Não é possível iniciar o gerador de perfis, porque o armazenamento externo não está pronto"
14 | "Falha ao iniciar o gerador de perfis"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-ro/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Trimite"
4 | "Căutare pe web"
5 | "Selectarea textului"
6 | "Nu se poate reda videoclipul"
7 | "Ne pare rău, acest videoclip nu este valid pentru transmitere în flux pe acest dispozitiv."
8 | "Ne pare rău, acest videoclip nu poate fi redat."
9 | "OK"
10 | "Se încarcă video"
11 | "Instrumentul de creare a profilului a pornit"
12 | "Instrumentul de creare a profilului a finalizat operația. Rezultatele apar în %1$s."
13 | "Instrumentul de creare a profilului nu poate porni, deoarece stocarea externă nu este gata"
14 | "Instrumentul de creare a profilului nu a putut porni"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-ru/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Поделиться"
4 | "Веб-поиск"
5 | "Выделение текста"
6 | "Не удается воспроизвести видео"
7 | "Невозможно воспроизвести видео на этом устройстве"
8 | "Невозможно воспроизвести видео."
9 | "ОК"
10 | "Загрузка видео…"
11 | "Профайлер запущен"
12 | "Работа профайлера завершена. Результаты сохранены в файле %1$s."
13 | "Не удалось запустить профайлер, поскольку внешнее хранилище недоступно"
14 | "Не удалось запустить профайлер"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-sk/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Zdieľať"
4 | "Vyhľadávanie na webe"
5 | "Výber textu"
6 | "Video sa nedá prehrať"
7 | "Je nám to ľúto, ale toto video sa nedá streamovať do tohto zariadenia."
8 | "Je nám to ľúto, ale toto video sa nedá prehrať."
9 | "OK"
10 | "Načítanie videa"
11 | "Profilovač bol spustený"
12 | "Profilovač bol ukončený. Výsledky sa uložili do súboru %1$s."
13 | "Profilovač sa nedá spustiť, pretože externý ukladací priestor nie je pripravený"
14 | "Spustenie profilovača zlyhalo"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-sl/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Skupna raba"
4 | "Spletno iskanje"
5 | "Izbiranje besedila"
6 | "Videa ni mogoče predvajati"
7 | "Ta video ni veljaven za pretakanje v to napravo."
8 | "Tega videa ni mogoče predvajati."
9 | "V redu"
10 | "Nalaganje videa"
11 | "Orodje za spremljanje delovanja aplikacije ali sistema se je zagnalo"
12 | "Orodje za spremljanje delovanja aplikacije ali sistema je končalo postopek. Rezultati so v datoteki %1$s."
13 | "Orodja za spremljanje delovanja aplikacije ali sistema ni mogoče zagnati, ker zunanja naprava za shranjevanje ni pripravljena"
14 | "Orodja za spremljanje delovanja aplikacije ali sistema ni bilo mogoče zagnati"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-sr/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Дели"
4 | "Веб-претрага"
5 | "Избор текста"
6 | "Није могуће пустити видео"
7 | "Жао нам је, овај видео није погодан за стриминг на овом уређају."
8 | "Жао нам је, није могуће пустити овај видео."
9 | "Потврди"
10 | "Учитавање видеа"
11 | "Програм за оптимизацију је покренут"
12 | "Програм за оптимизацију је завршио. Резултати су у датотеци %1$s."
13 | "Није могуће покренути програм за оптимизацију зато што спољна меморија није спремна"
14 | "Покретање програма за оптимизацију није успело"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-sv/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Dela"
4 | "Webbsökning"
5 | "Textmarkering"
6 | "Det går inte att spela upp video"
7 | "Det går tyvärr inte att spela upp videon på den här enheten."
8 | "Det går tyvärr inte att spela upp den här videon."
9 | "OK"
10 | "Videon läses in"
11 | "Profileraren har startats"
12 | "Profileringen är klar. Resultaten finns i %1$s."
13 | "Det går inte att starta profileraren eftersom den externa lagringsplatsen inte är klar"
14 | "Det gick inte att starta profileraren"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-sv/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Föregående åtgärd kan inte slutföras. För lite minne."
4 | "Det gick inte att öppna filen"
5 | "Mer"
6 | "Nyans"
7 | "Mättnad"
8 | "Värde"
9 | "Ange"
10 | "Avbryt"
11 | "Välj färg"
12 | "Röd"
13 | "Cyanblå"
14 | "Blå"
15 | "Grön"
16 | "Magenta"
17 | "Gul"
18 | "Svart"
19 | "Vit"
20 | "Det gick inte att kopiera till Urklipp"
21 | "Månad"
22 | "År"
23 | "Ange"
24 | "Ange månad"
25 | "Vecka"
26 | "Ange vecka"
27 | "AM"
28 | "PM"
29 | "Ange tid"
30 | "Timme"
31 | "Minut"
32 | "Sekund"
33 | "Millisekund"
34 | "FM/EM"
35 | "."
36 | "."
37 | ","
38 | "Ange datum och tid"
39 | "Datum"
40 | "Tid"
41 | "Övrigt"
42 | "Ange datum"
43 | "Rensa"
44 | "Visar popupfönster för Autofyll"
45 | "Visar popupfönster för lösenordsgenerering"
46 | "Förslag tillgängliga"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-sw/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Shiriki"
4 | "Tafuta kwenye wavuti"
5 | "Chaguo la maandishi"
6 | "Haiwezi kucheza video"
7 | "Samahani, video hii sio sahihi kutiririshwa kwenye kifaa hiki."
8 | "Samahani, video hii haiwezi kuchezwa."
9 | "Sawa"
10 | "Inapakia video"
11 | "Kihoji rejesta kimeanzishwa"
12 | "Kihoji rejesta kimemaliza. Matokeo yako katika %1$s."
13 | "Haiwezi kuanzisha kihoji rejesta kwa sababu hifadhi ya nje haiko tayari"
14 | "Imeshindwa kuanzisha kihoji rejesta"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-th/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "แชร์"
4 | "ค้นเว็บ"
5 | "การเลือกข้อความ"
6 | "ไม่สามารถเล่นวิดีโอ"
7 | "ขออภัย ไม่สามารถสตรีมวิดีโอไปยังอุปกรณ์นี้"
8 | "ขออภัย วิดีโอนี้เล่นไม่ได้"
9 | "ตกลง"
10 | "กำลังโหลดวิดีโอ"
11 | "เริ่มโปรแกรมโปรไฟล์เลอร์แล้ว"
12 | "โปรแกรมโปรไฟล์เลอร์ดำเนินการเสร็จแล้ว ผลลัพธ์อยู่ใน %1$s"
13 | "ไม่สามารถเริ่มโปรแกรมโปรไฟล์เลอร์ได้เนื่องจากที่จัดเก็บข้อมูลภายนอกไม่พร้อมใช้งาน"
14 | "ไม่สามารถเริ่มโปรแกรมโปรไฟล์เลอร์"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-tl/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Ibahagi"
4 | "Paghahanap sa web"
5 | "Pagpili ng teksto"
6 | "Hindi ma-play ang video"
7 | "Paumanhin, di-wasto ang video na ito para sa pag-stream sa device na ito."
8 | "Paumanhin, hindi mape-play ang video na ito."
9 | "OK"
10 | "Naglo-load"
11 | "Nagsimula na ang profiler"
12 | "Tapos na ang profiler. Ang mga resulta ay nasa %1$s."
13 | "Hindi masimulan ang profiler dahil hindi handa ang panlabas na storage"
14 | "Nabigong simulan ang profiler"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-tr/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Paylaş"
4 | "Web arama"
5 | "Metin seçimi"
6 | "Video oynatılamıyor"
7 | "Bu video maalesef bu cihaza akışla gönderilmek için uygun değil."
8 | "Maalesef bu video oynatılamıyor."
9 | "Tamam"
10 | "Video yükleniyor"
11 | "Profil düzenleyici başlatıldı"
12 | "Profil düzenleyici tamamlandı. Sonuçlar %1$s dosyasındadır."
13 | "Harici depolama birimi hazır olmadığından profil düzenleyici başlatılamıyor"
14 | "Profil düzenleyici başlatılamadı"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-uk/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Надіслати"
4 | "Веб-пошук"
5 | "Виділення тексту"
6 | "Не вдається відтворити відео"
7 | "На жаль, це відео неможливо транслювати на цьому пристрої."
8 | "На жаль, це відео неможливо відтворити."
9 | "ОК"
10 | "Завантаж. відео"
11 | "Профілювальник запущено"
12 | "Профілювальник закінчив роботу. Результати у файлі %1$s."
13 | "Неможливо запустити профілювальник, оскільки зовнішня пам’ять не готова"
14 | "Помилка запуску профілювальника"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-v17/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
13 |
16 |
19 |
20 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-v17/ui_java_styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
10 |
13 |
14 |
15 |
18 |
21 |
34 |
38 |
41 |
42 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-v21/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-v21/ui_java_styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
11 |
14 |
15 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-vi/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Chia sẻ"
4 | "Tìm kiếm trên web"
5 | "Lựa chọn văn bản"
6 | "Không thể phát video"
7 | "Rất tiếc, video này không hợp lệ để phát trực tuyến sang thiết bị này."
8 | "Rất tiếc, không thể phát video này."
9 | "OK"
10 | "Đang tải video"
11 | "Đã chạy Profiler"
12 | "Đã hoàn tất Profiler. Kết quả có trong %1$s."
13 | "Không thể khởi động profiler vì bộ nhớ ngoài không sẵn sàng"
14 | "Không khởi động được profiler"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-vi/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Không thể hoàn tất thao tác trước do bộ nhớ thấp"
4 | "Không mở được tệp đã chọn"
5 | "Thêm"
6 | "Màu sắc"
7 | "Độ bão hòa"
8 | "Giá trị"
9 | "Đặt"
10 | "Hủy"
11 | "Chọn màu"
12 | "Đỏ"
13 | "Lục lam"
14 | "Xanh lam"
15 | "Xanh lục"
16 | "Đỏ thẫm"
17 | "Vàng"
18 | "Đen"
19 | "Trắng"
20 | "Sao chép sang khay nhớ tạm không thành công"
21 | "Tháng"
22 | "Năm"
23 | "Đặt"
24 | "Đặt tháng"
25 | "Tuần"
26 | "Đặt tuần"
27 | "SA"
28 | "CH"
29 | "Đặt thời gian"
30 | "Giờ"
31 | "Phút"
32 | "Giây"
33 | "Mili giây"
34 | "SA/CH"
35 | ":"
36 | ":"
37 | "."
38 | "Đặt ngày giờ"
39 | "Ngày Tháng"
40 | "Thời gian"
41 | "Khác"
42 | "Đặt ngày"
43 | "Xóa"
44 | "Hiển thị cửa sổ bật lên tự động điền"
45 | "Hiển thị cửa sổ bật lên tạo mật khẩu"
46 | "Có đề xuất"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-zh-rCN/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "分享"
4 | "网页搜索"
5 | "选择文字"
6 | "无法播放视频"
7 | "抱歉,此视频无法流式传输到该设备。"
8 | "抱歉,此视频无法播放。"
9 | "确定"
10 | "加载视频"
11 | "分析器已启动"
12 | "分析器已完成操作。请在 %1$s 中查看分析结果。"
13 | "外部存储设备尚未准备就绪,无法启动分析器"
14 | "无法启动分析器"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-zh-rCN/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "内存不足,无法完成上一操作"
4 | "无法打开所选文件"
5 | "更多"
6 | "色调"
7 | "饱和度"
8 | "值"
9 | "设置"
10 | "取消"
11 | "选择颜色"
12 | "红色"
13 | "青色"
14 | "蓝色"
15 | "绿色"
16 | "洋红色"
17 | "黄色"
18 | "黑色"
19 | "白色"
20 | "未能复制到剪贴板"
21 | "月"
22 | "年"
23 | "设置"
24 | "设置月份"
25 | "周"
26 | "设置星期"
27 | "上午"
28 | "下午"
29 | "设置时间"
30 | "小时"
31 | "分钟"
32 | "秒"
33 | "毫秒"
34 | "上午/下午"
35 | ":"
36 | ":"
37 | "."
38 | "设置日期和时间"
39 | "日期"
40 | "时间"
41 | "其他"
42 | "设置日期"
43 | "清除"
44 | "目前显示的是自动填充弹出式窗口"
45 | "目前显示的是密码生成弹出式窗口"
46 | "有自动填充建议"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-zh-rTW/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "分享"
4 | "網頁搜尋"
5 | "選取文字"
6 | "無法播放影片"
7 | "很抱歉,這部影片的格式有誤,無法透過這個裝置串流播放。"
8 | "很抱歉,無法播放這部影片。"
9 | "確定"
10 | "正在載入影片"
11 | "分析器已啟動"
12 | "分析器已執行完成,請參閱 %1$s 查看分析結果。"
13 | "外部儲存空間尚未準備就緒,因此無法啟動分析器"
14 | "無法啟動分析器"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values-zh-rTW/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "記憶體不足,無法完成前一項操作"
4 | "無法開啟選取的檔案"
5 | "詳細資訊"
6 | "色調"
7 | "飽和度"
8 | "值"
9 | "設定"
10 | "取消"
11 | "選取顏色"
12 | "紅色"
13 | "青色"
14 | "藍色"
15 | "綠色"
16 | "洋紅色"
17 | "黃色"
18 | "黑色"
19 | "白色"
20 | "無法複製到剪貼簿"
21 | "月"
22 | "年"
23 | "設定"
24 | "設定月份"
25 | "週"
26 | "設定週次"
27 | "AM"
28 | "PM"
29 | "設定時間"
30 | "小時"
31 | "分鐘"
32 | "秒"
33 | "毫秒"
34 | "AM/PM"
35 | ":"
36 | ":"
37 | "."
38 | "設定日期和時間"
39 | "日期"
40 | "時間"
41 | "其他"
42 | "設定日期"
43 | "清除"
44 | "目前顯示的是自動填入彈出式視窗"
45 | "目前顯示的是密碼產生彈出式視窗"
46 | "有自動填入建議"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/android_content_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Share"
4 | "Web search"
5 | "Text selection"
6 | "Cannot play video"
7 | "Sorry, this video is not valid for streaming to this device."
8 | "Sorry, this video cannot be played."
9 | "OK"
10 | "Loading video"
11 | "Profiler started"
12 | "Profiler finished. Results are in %1$s."
13 | "Can\'t start profiler because external storage is not ready"
14 | "Failed to start profiler"
15 |
16 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/android_ui_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Unable to complete previous operation due to low memory"
4 | "Failed to open selected file"
5 | "More"
6 | "Hue"
7 | "Saturation"
8 | "Value"
9 | "Set"
10 | "Cancel"
11 | "Select color"
12 | "Red"
13 | "Cyan"
14 | "Blue"
15 | "Green"
16 | "Magenta"
17 | "Yellow"
18 | "Black"
19 | "White"
20 | "Failed to copy to the clipboard"
21 | "Month"
22 | "Year"
23 | "Set"
24 | "Set month"
25 | "Week"
26 | "Set week"
27 | "AM"
28 | "PM"
29 | "Set time"
30 | "Hour"
31 | "Minute"
32 | "Second"
33 | "Millisecond"
34 | "AM/PM"
35 | ":"
36 | ":"
37 | "."
38 | "Set date and time"
39 | "Date"
40 | "Time"
41 | "Other"
42 | "Set date"
43 | "Clear"
44 | "Showing autofill popup"
45 | "Showing password generation popup"
46 | "Suggestions available"
47 |
48 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/android_xwalk_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Javascript Alert"
4 | "Javascript Confirm"
5 | "Javascript Prompt"
6 | "Downloading file:"
7 | "No permission to write, abort."
8 | "Downloading file already exists, abort."
9 | "Failed to download file."
10 | "Finished to download file."
11 | "Ssl Certificate Error Alert"
12 | "Authentication Required"
13 | "Username"
14 | "Password"
15 | "Log In"
16 |
17 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | #B0B0B0
9 | #FFFFFF
10 | #E5E5E5
11 | #C0C0C0
12 |
13 |
14 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 | 7dp
11 |
12 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
20 |
21 |
22 |
29 |
30 |
31 |
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/ui_java_attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/ui_java_dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
13 | 14.5dp
14 | 60dp
15 | 44dp
16 | 1px
17 |
18 |
23 | 27.0mm
24 | 48.0dp
25 |
26 | 32dp
27 | 4dp
28 | 48dp
29 | 8dp
30 | 14sp
31 |
32 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/ui_java_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/ui_java_styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
30 |
31 |
32 |
39 |
40 |
41 |
78 |
79 |
80 |
90 |
91 |
92 |
99 |
100 |
101 |
102 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/xwalk_app_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | "Crosswalk Project Install"
4 | "Decompressing the Crosswalk Project Service..."
5 | "Downloading the Crosswalk Project Service from remote host..."
6 | "Download failed. A network error occurred."
7 | "Download failed. Storage device not found."
8 | "Download failed. Insufficient disk space."
9 | "Download failed. The network connection timed out."
10 | "Failed to open the app store. You need an app store to download the Crosswalk Project Service."
11 | "Crosswalk Project Service Not Found"
12 | "APP_NAME requires the Crosswalk Project Service to work. Please install it from the app store, then restart APP_NAME."
13 | "New Crosswalk Project Service Required"
14 | "The version of the Crosswalk Project Service on this system must be updated. Please install it from the app store, then restart APP_NAME."
15 | "Incompatible Crosswalk Project Service"
16 | "APP_NAME is not compatible with the installed version of the Crosswalk Project Service."
17 | "Incomplete Crosswalk Project Service"
18 | "Please repackage APP_NAME."
19 | "Mismatch of CPU Architecture"
20 | "The Crosswalk Project Service must be updated to match the CPU architecture of the device. Please install it from the app store, then restart APP_NAME."
21 | "The Crosswalk Project Signature Verification Failed"
22 | "The integrity of the Crosswalk Project Service cannot be verified. Please uninstall it and restart APP_NAME."
23 | "Get Crosswalk"
24 | "Cancel"
25 | "Continue"
26 | "Close"
27 | "Retry"
28 |
29 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/xwalk_core_internal_java_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/xwalk_core_java_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/crosswalk/src/main/res/values/xwalk_resources_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | - icudtl.dat
5 | - xwalk.pak
6 |
7 |
8 |
--------------------------------------------------------------------------------
/crosswalk/src/test/java/android/space/lingen/crosswalk/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package android.space.lingen.crosswalk;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lingen/sample_webivew_android/a7f03cfe639008bb4b51e019e4261bebfc15dd8b/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Dec 28 10:00:20 PST 2015
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
7 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12 | set DEFAULT_JVM_OPTS=
13 |
14 | set DIRNAME=%~dp0
15 | if "%DIRNAME%" == "" set DIRNAME=.
16 | set APP_BASE_NAME=%~n0
17 | set APP_HOME=%DIRNAME%
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windowz variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 | if "%@eval[2+2]" == "4" goto 4NT_args
53 |
54 | :win9xME_args
55 | @rem Slurp the command line arguments.
56 | set CMD_LINE_ARGS=
57 | set _SKIP=2
58 |
59 | :win9xME_args_slurp
60 | if "x%~1" == "x" goto execute
61 |
62 | set CMD_LINE_ARGS=%*
63 | goto execute
64 |
65 | :4NT_args
66 | @rem Get arguments from the 4NT Shell from JP Software
67 | set CMD_LINE_ARGS=%$
68 |
69 | :execute
70 | @rem Setup the command line
71 |
72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73 |
74 | @rem Execute Gradle
75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76 |
77 | :end
78 | @rem End local scope for the variables with windows NT shell
79 | if "%ERRORLEVEL%"=="0" goto mainEnd
80 |
81 | :fail
82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83 | rem the _cmd.exe /c_ return code!
84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
85 | exit /b 1
86 |
87 | :mainEnd
88 | if "%OS%"=="Windows_NT" endlocal
89 |
90 | :omega
91 |
--------------------------------------------------------------------------------
/sample_webivew_android.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app', ':crosswalk'
2 |
--------------------------------------------------------------------------------