Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~1K People Reached
Favorite Tags
c x 2
Member Avatar for Yimeng

I try to implement reverse geocoding in Android App. But when I call getFromLocation() function, it doesn't return value. Can Someone see my code and tell me where I might make mistakes? public void getAddress(Location location) { Geocoder geo_coder = new Geocoder(this, Locale.ENGLISH); try { List<Address> address = geo_coder.getFromLocation(location.getLatitude(), location.getLongitude(), …

Member Avatar for Masterblank
0
154
Member Avatar for Yimeng

I want to build an simple android download app without using download manager. I try to implement it with asynctask. But I don't know how to implement "pausing and resuming when Based on the internet condition". That is when I click the start button, it start to download if connected. …

Member Avatar for peter_budo
0
642
Member Avatar for Yimeng

I've learned the hello.c using FUSE. It can create a hello file under mountfile. But I've no idea about how to create a folder under the mountfile and then create hello under mountfile/folderIcreate. then I can use cat mountfile/folderIcreate/hello the code is similar to the simple hello.c. #define FUSE_USE_VERSION 30 …

Member Avatar for Yimeng
0
354