]> Pileus Git - ~andy/freeotp/blob - src/org/fedorahosted/freeotp/MainActivity.java
Support camera hardware oreintation offsets
[~andy/freeotp] / src / org / fedorahosted / freeotp / MainActivity.java
1 /*
2  * FreeOTP
3  *
4  * Authors: Nathaniel McCallum <npmccallum@redhat.com>
5  *
6  * Copyright (C) 2013  Nathaniel McCallum, Red Hat
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *     http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20
21 /*
22  * Portions Copyright 2009 ZXing authors
23  *
24  * Licensed under the Apache License, Version 2.0 (the "License");
25  * you may not use this file except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *      http://www.apache.org/licenses/LICENSE-2.0
29  *
30  * Unless required by applicable law or agreed to in writing, software
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  */
36
37 package org.fedorahosted.freeotp;
38
39 import org.fedorahosted.freeotp.Token.TokenUriInvalidException;
40 import org.fedorahosted.freeotp.adapters.TokenAdapter;
41
42 import android.app.Activity;
43 import android.database.DataSetObserver;
44 import android.os.Bundle;
45 import android.view.Menu;
46 import android.view.MenuItem;
47 import android.view.MenuItem.OnMenuItemClickListener;
48 import android.view.View;
49 import android.widget.GridView;
50 import android.widget.Toast;
51
52 public class MainActivity extends Activity implements OnMenuItemClickListener {
53         private TokenAdapter mTokenAdapter;
54         private DataSetObserver mDataSetObserver;
55
56     @Override
57     protected void onCreate(Bundle savedInstanceState) {
58                 super.onCreate(savedInstanceState);
59                 setContentView(R.layout.main);
60
61                 mTokenAdapter = new TokenAdapter(this);
62                 ((GridView) findViewById(R.id.grid)).setAdapter(mTokenAdapter);
63
64                 mDataSetObserver = new DataSetObserver() {
65                         @Override
66                         public void onChanged() {
67                                 super.onChanged();
68                                 if (mTokenAdapter.getCount() == 0)
69                                         findViewById(android.R.id.empty).setVisibility(View.VISIBLE);
70                                 else
71                                         findViewById(android.R.id.empty).setVisibility(View.GONE);
72                         }
73                 };
74                 mTokenAdapter.registerDataSetObserver(mDataSetObserver);
75                 mDataSetObserver.onChanged();
76     }
77
78         @Override
79         protected void onDestroy() {
80                 super.onDestroy();
81                 mTokenAdapter.unregisterDataSetObserver(mDataSetObserver);
82         }
83
84     @Override
85     public boolean onCreateOptionsMenu(Menu menu) {
86         getMenuInflater().inflate(R.menu.main, menu);
87         menu.findItem(R.id.action_add).setOnMenuItemClickListener(this);
88                 menu.findItem(R.id.action_about).setOnMenuItemClickListener(this);
89         return true;
90     }
91
92         @Override
93         public boolean onMenuItemClick(MenuItem item) {
94                 switch (item.getItemId()) {
95                 case R.id.action_add:
96                         new CameraDialogFragment().show(getFragmentManager(),
97                                         CameraDialogFragment.FRAGMENT_TAG);
98                         return true;
99
100                 case R.id.action_about:
101                         new AboutDialogFragment().show(getFragmentManager(),
102                                         AboutDialogFragment.FRAGMENT_TAG);
103                         return true;
104                 }
105
106                 return false;
107         }
108
109         public void tokenURIReceived(String uri) {
110                 try {
111                         mTokenAdapter.add(uri);
112                 } catch (TokenUriInvalidException e) {
113                         Toast.makeText(this, R.string.invalid_token, Toast.LENGTH_SHORT).show();
114                         e.printStackTrace();
115                 }
116         }
117 }