发布时间:2014-01-22 10:03:33
这是android.location.Location中的计算方式,拿来用应该没问题,没试过点击(此处)折叠或打开public static void distanceBetween(double startLatitude, double startLongitude, double endLatitude, double endLongitude, float[] .........【阅读全文】
发布时间:2014-01-10 15:52:20
在activity or application中android:theme="@style/MyTheme"使用<style name="MyTheme" parent="@android:style/Theme.NoTitleBar"> <item name="android:windowAnimationStyle">@style/MyTheme.Window</item> </style> <style name="MyTheme.Window" pare.........【阅读全文】
发布时间:2014-01-07 16:36:00
context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA_FLASH); See http://developer.android.com/reference/android/content/pm/PackageManager.html for more information.......【阅读全文】
发布时间:2014-01-07 16:34:40
forward:http://blog.csdn.net/ithomer/article/details/6661967Activity全屏设置方式1:AndroidManifest.xml<activity android:name="myAcitivty" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />方式2:代码实现requestWindowFeature(Window.FEATURE_NO_TITLE); //.........【阅读全文】