|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
那这个对象有什么意义?现在很多用javabean的人就不能保证对象有完整的意义,不成熟的使用模式等导致代码疯狂增长,调试维护的时间要得多得多。在说性能之前,先说说你这个比较的来历。据说微软为了证明。net网页编程比java好。智妙手机正在渐渐统治全部手机天下,这是一个不言而喻的现实。自从GPS设备被广泛的内嵌到智妙手机中,它给那些使用地舆定位的使用程序供应了极年夜的匡助。个中一类程序是接纳基于定位的服务(LocationBasedService),它是使用数据来盘算用户地点地位的。程序一般用的手艺是geocoding(从地舆数据中寻觅相干的地舆坐标,如一条街的地位)和reversegeocoding(依据供应的坐标来供应信息)。另外一类程序则接纳ProximityAlerts。像它的名字那样,当用户的地位靠近某个特定的PointofInterest(POI)时会举行提醒。跟着大批的程序盘算使用这项手艺,并伴随宣扬出色的示例,Proximityalert将会是接上去几年的热门。在这个教程中,我将展现如何往使用Android的内嵌Proximityalert功效。
在入手下手之前,复杂的懂得一下基于定位的程序或geocoding会对接上去的浏览带来极年夜的匡助。你大概必要要读一下我之前的几篇教程,如“AndroidLocationBasedServicesApplication–GPSlocation”和“AndroidReverseGeocodingwithYahooAPI–PlaceFinder”。另外一个必要提示的是,这篇教程是受“DevelopingProximityAlertsforMobileApplicationsusingtheAndroidPlatform”这篇文章启示而生。这篇文章分为四个部分,关于初学者一些中央大概会稍显庞大并带来一些坚苦。基于这些缘故原由,我决意写一篇绝对更短更容易懂的教程。
我们将会创立一个复杂的程序,它存储的一个点坐标会被用户触发而且当用户靠近这个点推送动静。当用户抵达谁人点坐标时会依据需求猎取动静。
我们起首创立一个Eclipse项目入手下手,并定名为“AndroidProximityAlertProject”。接上去,为程序创立一个MainActivity然后定名为ProxAlertActivity。上面是程序的主页面:
这里是UI界面的结构,定名为main.xml
<p>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
<?xmlversion="1.0"encoding="utf-8"?>
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<EditText
android:id="@+id/point_latitude"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="25dip"
android:layout_marginRight="25dip"
/>
<EditText
android:id="@+id/point_longitude"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="25dip"
android:layout_marginRight="25dip"
/>
<Button
android:id="@+id/find_coordinates_button"
android:text="FindCoordinates"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<p> |
|