summaryrefslogtreecommitdiff
path: root/src/se/leap/leapclient/ProviderDetailFragment.java
blob: d061a708669fe3b1115cf22cbd10bb6a88dc278e (plain)
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
package se.leap.leapclient;

import org.json.JSONException;
import org.json.JSONObject;

import android.app.AlertDialog;
import android.app.Dialog;
import android.app.DialogFragment;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.TextView;

public class ProviderDetailFragment extends DialogFragment {
	@Override
	public Dialog onCreateDialog(Bundle savedInstanceState) {
		AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
		try {

			LayoutInflater inflater = getActivity().getLayoutInflater();
			View provider_detail_view = inflater.inflate(R.layout.provider_detail_fragment, null);
			
			JSONObject provider_json = ConfigHelper.getJsonFromSharedPref(ConfigHelper.PROVIDER_KEY);
			
			final TextView domain = (TextView)provider_detail_view.findViewById(R.id.provider_detail_domain);
			domain.setText(provider_json.getString(ConfigHelper.DOMAIN));
			final TextView name = (TextView)provider_detail_view.findViewById(R.id.provider_detail_name);
			name.setText(provider_json.getJSONObject(ConfigHelper.NAME).getString("en"));
			final TextView description = (TextView)provider_detail_view.findViewById(R.id.provider_detail_description);
			description.setText(provider_json.getJSONObject(ConfigHelper.DESCRIPTION).getString("en"));
			
			builder.setView(provider_detail_view);
			builder.setTitle(R.string.provider_details_fragment_title);
			builder.setPositiveButton(R.string.use_anonymously_button, new DialogInterface.OnClickListener() {
				public void onClick(DialogInterface dialog, int id) {
				}
			});
			builder.setNegativeButton(R.string.login_button, new DialogInterface.OnClickListener() {
				public void onClick(DialogInterface dialog, int id) {
				}
			});
			
			return builder.create();
		} catch (JSONException e) {
			return null;
		}
	}

	public static DialogFragment newInstance() {
		ProviderDetailFragment provider_detail_fragment = new ProviderDetailFragment();
		return provider_detail_fragment;
	}
}