File tree Expand file tree Collapse file tree 11 files changed +137
-0
lines changed
src/com/scottagarman/android/jsexample Expand file tree Collapse file tree 11 files changed +137
-0
lines changed Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <classpath >
3+ <classpathentry kind =" src" path =" src" />
4+ <classpathentry kind =" src" path =" gen" />
5+ <classpathentry kind =" con" path =" com.android.ide.eclipse.adt.ANDROID_FRAMEWORK" />
6+ <classpathentry kind =" output" path =" bin" />
7+ </classpath >
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <projectDescription >
3+ <name >JsExample</name >
4+ <comment ></comment >
5+ <projects >
6+ </projects >
7+ <buildSpec >
8+ <buildCommand >
9+ <name >com.android.ide.eclipse.adt.ResourceManagerBuilder</name >
10+ <arguments >
11+ </arguments >
12+ </buildCommand >
13+ <buildCommand >
14+ <name >com.android.ide.eclipse.adt.PreCompilerBuilder</name >
15+ <arguments >
16+ </arguments >
17+ </buildCommand >
18+ <buildCommand >
19+ <name >org.eclipse.jdt.core.javabuilder</name >
20+ <arguments >
21+ </arguments >
22+ </buildCommand >
23+ <buildCommand >
24+ <name >com.android.ide.eclipse.adt.ApkBuilder</name >
25+ <arguments >
26+ </arguments >
27+ </buildCommand >
28+ </buildSpec >
29+ <natures >
30+ <nature >com.android.ide.eclipse.adt.AndroidNature</nature >
31+ <nature >org.eclipse.jdt.core.javanature</nature >
32+ </natures >
33+ </projectDescription >
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3+ package =" com.scottagarman.android.jsexample"
4+ android : versionCode =" 1"
5+ android : versionName =" 1.0" >
6+ <application android : icon =" @drawable/icon" android : label =" @string/app_name" >
7+ <activity android : name =" .JsExampleMain"
8+ android : label =" @string/app_name" >
9+ <intent-filter >
10+ <action android : name =" android.intent.action.MAIN" />
11+ <category android : name =" android.intent.category.LAUNCHER" />
12+ </intent-filter >
13+ </activity >
14+
15+ <uses-permission android : name =" android.permission.INTERNET" ></uses-permission >
16+ </application >
17+
18+
19+ </manifest >
Original file line number Diff line number Diff line change 1+ < html >
2+ < head >
3+ </ head >
4+ < body >
5+ < a href ="javascript:void(0); " onclick ="android.log('omg its working!'); "> Click on this link for a log message</ a >
6+ </ body >
7+ </ html >
Original file line number Diff line number Diff line change 1+ # This file is automatically generated by Android Tools.
2+ # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3+ #
4+ # This file must be checked in Version Control Systems.
5+ #
6+ # To customize properties used by the Ant build system use,
7+ # "build.properties", and override values to adapt the script to your
8+ # project structure.
9+
10+ # Project target.
11+ target =android-8
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <LinearLayout xmlns : android =" http://schemas.android.com/apk/res/android"
3+ android : orientation =" vertical"
4+ android : layout_width =" fill_parent"
5+ android : layout_height =" fill_parent"
6+ >
7+ <WebView
8+ android:id=" @+id/web_view"
9+ android : layout_width =" fill_parent"
10+ android : layout_height =" fill_parent"
11+ />
12+ </LinearLayout >
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <resources >
3+ <string name =" hello" >Hello World, JsExampleMain!</string >
4+ <string name =" app_name" >JsExample</string >
5+ </resources >
You can’t perform that action at this time.
0 commit comments