-
Notifications
You must be signed in to change notification settings - Fork 2
/
MainActivity.java
77 lines (62 loc) · 2.79 KB
/
MainActivity.java
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
* Copyright (C) 2015-2017 akha, a.k.a. Alexander Kharitonov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package akha.yakhont.demosimple;
import akha.yakhont.demosimple.retrofit.LocalJsonClient2;
import akha.yakhont.demosimple.retrofit.Retrofit2Api;
import akha.yakhont.Core;
import akha.yakhont.callback.annotation.CallbacksInherited;
import akha.yakhont.location.LocationCallbacks;
import akha.yakhont.location.LocationCallbacks.LocationListener;
import akha.yakhont.technology.retrofit.Retrofit2;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.location.Location;
import android.os.Bundle;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.widget.TextView;
import android.widget.Toast;
import java.util.Date;
@CallbacksInherited(LocationCallbacks.class)
public class MainActivity extends Activity implements LocationListener {
public static final Retrofit2<Retrofit2Api> sRetrofit2 = new Retrofit2<>();
@Override
protected void onCreate(Bundle savedInstanceState) {
Core.init(getApplication()); // initializes the Yakhont library
LocationCallbacks.allowAccessToLocation(true); // suppress confirmation dialog
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// local JSON client, so URL doesn't matter
// uncomment network delay emulation for the progress dialog etc.
sRetrofit2.init(Retrofit2Api.class, sRetrofit2.getDefaultBuilder("http://localhost/")
.client(new LocalJsonClient2() /* .setEmulatedNetworkDelay(2000) */ ));
// for normal HTTP requests you can use something like this
// sRetrofit2.init(Retrofit2Api.class, "http://...");
showAdvertisement();
}
@Override
public void onLocationChanged(Location location, Date date) {
((TextView) findViewById(R.id.location)).setText(LocationCallbacks.toDms(location, this));
}
@SuppressLint("InflateParams")
private void showAdvertisement() {
final Toast toast = new Toast(this);
toast.setDuration(Toast.LENGTH_LONG);
toast.setGravity(Gravity.CENTER, 0, 0);
toast.setView(LayoutInflater.from(this).inflate(R.layout.advertisement, null, false));
toast.show();
}
}