当前位置: 编程技术>移动开发
本页文章导读:
▪实用软件:信手记帐号 2.0 实用软件:随手记帐号 2.0
还在为记不住那么的帐号密码而苦恼吗?赶快使用随手记帐号吧!方便您记住每一个帐号,从此再也不用担心忘记帐号了!更新说明:1.增加了备份还原功能,一键.........
▪ 【so easy~】 GPS的那一星半点事儿~ 【so easy~】 GPS的那点儿事儿~!
http://androiddada.iteye.com/
最近发现微信等应用都有找附近的人 的新功能。
遍开始想看看gps
于是找了些网上的代码,自己试了试:
public class GPS_testActivity ext.........
▪ 应用lame编码mp3 使用lame编码mp3
http://stackoverflow.com/questions/2495420/is-there-any-lame-c-wraper-simplifier-working-on-linux-mac-and-win-from-pure/
......
[1]实用软件:信手记帐号 2.0
来源: 互联网 发布时间: 2014-02-18
实用软件:随手记帐号 2.0
还在为记不住那么的帐号密码而苦恼吗?赶快使用随手记帐号吧!方便您记住每一个帐号,从此再也不用担心忘记帐号了!
更新说明:
1.增加了备份还原功能,一键备份还原到SD卡,从此帐号再也不会丢失了
2.美化了界面,更人性化
3.简化操作,更好的用户体验
[2] 【so easy~】 GPS的那一星半点事儿~
来源: 互联网 发布时间: 2014-02-18
【so easy~】 GPS的那点儿事儿~!
http://androiddada.iteye.com/
最近发现微信等应用都有找附近的人 的新功能。
遍开始想看看gps
于是找了些网上的代码,自己试了试:
public class GPS_testActivity extends Activity { /** Called when the activity is first created. */ private LinearLayout mainView=null; private TextView infoView=null; private TextView locationView=null; private LocationManager locationManager=null; private LocationListener locationListener=null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mainView=new LinearLayout(this); mainView.setOrientation(LinearLayout.VERTICAL); infoView=new TextView(this); mainView.addView(infoView); locationView=new TextView(this); mainView.addView(locationView); setContentView(mainView); locationManager_init(); } /*locationManager初始化*/ void locationManager_init(){ locationManager =(LocationManager)this.getSystemService(GPS_testActivity.LOCATION_SERVICE); locationListener_init(); locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,1000,0, locationListener); } /*locatonListener初始化*/ void locationListener_init(){ locationListener=new LocationListener(){ //位置变化时触发 public void onLocationChanged(Location location) { System.out.println("onLocationChanged"); locationView.setText("时间:"+location.getTime()+"\n"); locationView.append("经度:"+location.getLongitude()+"\n"); locationView.append("纬度:"+location.getLatitude()+"\n"); locationView.append("海拔:"+location.getAltitude()+"\n"); } //gps禁用时触发 public void onProviderDisabled(String provider) { System.out.println("onProviderDisabled"); Toast.makeText(GPS_testActivity.this, "请开启GPS!", Toast.LENGTH_SHORT).show(); Intent intent = new Intent(Settings.ACTION_SECURITY_SETTINGS); startActivityForResult(intent, 0); // 此为设置完成后返回到获取界面 } //gps开启时触发 public void onProviderEnabled(String provider) { Toast.makeText(GPS_testActivity.this, "GPS正常", Toast.LENGTH_SHORT).show(); } //gps状态变化时触发 public void onStatusChanged(String provider, int status,Bundle extras) { System.out.println("onStatusChanged"); if(status==LocationProvider.AVAILABLE){ infoView.setText("当前GPS状态:可见的\n"); }else if(status==LocationProvider.OUT_OF_SERVICE){ infoView.setText("当前GPS状态:服务区外\n"); }else if(status==LocationProvider.TEMPORARILY_UNAVAILABLE){ infoView.setText("当前GPS状态:暂停服务\n"); } } }; } }
布局很简单几个textView显示而已,就不上了
客户端得到gps数据传给服务处理。。最后显示出服务返回的数据 搞定!用户看起来很神奇的功能,在代码里并不复杂。
不过服务器端处理数据稍微麻烦写,需要根据经纬度找出你附近的人儿~
http://androiddada.iteye.com/
好了,希望对朋友们有用~
[3] 应用lame编码mp3
来源: 互联网 发布时间: 2014-02-18
使用lame编码mp3
http://stackoverflow.com/questions/2495420/is-there-any-lame-c-wraper-simplifier-working-on-linux-mac-and-win-from-pure/
最新技术文章: