Adding sound to Android

This commit is contained in:
Joe Bowser 2008-12-18 16:37:52 -08:00
parent fca16adf1d
commit 9704e63399
4 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<classpath> <classpath>
<classpathentry kind="src" path="src"/> <classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="output" path="bin"/> <classpathentry kind="output" path="bin"/>
</classpath> </classpath>

View File

@ -24,4 +24,5 @@
</activity> </activity>
</application> </application>
</manifest> </manifest>

View File

@ -5,5 +5,5 @@ public class GeoTuple {
public double lat; public double lat;
public double lng; public double lng;
public double ele; public double ele;
} }

View File

@ -13,7 +13,7 @@ import android.util.Log;
import android.webkit.WebView; import android.webkit.WebView;
public class GpsListener implements LocationListener { public class GpsListener implements LocationListener {
private Context mCtx; private Context mCtx;
private Location cLoc; private Location cLoc;
private LocationManager mLocMan; private LocationManager mLocMan;