Advertisement
minafaw3

mainactivity merchant

Oct 29th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.17 KB | None | 0 0
  1.  
  2.  
  3. import android.content.Intent;
  4. import android.content.res.TypedArray;
  5. import android.os.AsyncTask;
  6. import android.os.Bundle;
  7. import android.support.v4.app.Fragment;
  8. import android.support.v4.app.FragmentTransaction;
  9. import android.support.v4.widget.DrawerLayout;
  10. import android.support.v7.app.ActionBarDrawerToggle;
  11. import android.support.v7.app.AppCompatActivity;
  12. import android.support.v7.widget.Toolbar;
  13. import android.view.Menu;
  14. import android.view.MenuItem;
  15. import android.view.View;
  16. import android.widget.AdapterView;
  17. import android.widget.ListView;
  18.  
  19. import com.google.android.gms.gcm.GoogleCloudMessaging;
  20. import com.validate.R;
  21.  
  22. import java.io.IOException;
  23. import java.util.ArrayList;
  24.  
  25. import validate.com.Charts.BarChartFrag;
  26. import validate.com.WebService_API.API;
  27. import validate.com.merchant.Dashboard_fragment;
  28. import validate.com.merchant.Feedback_fragment;
  29. import validate.com.merchant.Main_Home_fragment;
  30. import validate.com.merchant.Payment_fragment;
  31. import validate.com.merchant.validate_fragment;
  32. import validate.com.slidemenu.NavigationAdapter;
  33. import validate.com.slidemenu.nav_item_class;
  34.  
  35.  
  36. public class MainActivity extends AppCompatActivity implements AdapterView.OnItemClickListener {
  37.  
  38. private DrawerLayout mDrawerLayout;
  39. private ListView navList;
  40. private TypedArray nav_icons;
  41. private ArrayList<nav_item_class> nav_items;
  42. private String[] nav_titles;
  43. private NavigationAdapter navAdapter;
  44. private ActionBarDrawerToggle mDrawerToggle;
  45. Toolbar toolbar;
  46.  
  47. GoogleCloudMessaging gcm;
  48. String RegId;
  49. public static final String PROJECT_NUMBER = "613644132796";
  50. private API _Api;
  51.  
  52.  
  53. @Override
  54. protected void onCreate(Bundle savedInstanceState) {
  55. super.onCreate(savedInstanceState);
  56. setContentView(R.layout.activity_main);
  57.  
  58. //RegisterGCm();
  59. _Api = new API(this);
  60. toolbar = (Toolbar) findViewById(R.id.my_toolbar);
  61. toolbar.setNavigationIcon(R.drawable.ic_drawer);
  62. setSupportActionBar(toolbar);
  63. getSupportActionBar().setHomeButtonEnabled(true);
  64. getSupportActionBar().setDisplayHomeAsUpEnabled(true);
  65. mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
  66. mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout, toolbar
  67. , R.string.drawer_open, R.string.drawer_close);
  68.  
  69.  
  70. navList = (ListView) findViewById(R.id.navlist);
  71. nav_icons = getResources().obtainTypedArray(R.array.nav_icons);
  72. nav_titles = getResources().getStringArray(R.array.nav_itmes);
  73.  
  74. View header = getLayoutInflater().inflate(R.layout.header, null);
  75. navList.addHeaderView(header);
  76.  
  77. nav_items = new ArrayList<nav_item_class>();
  78. for(int i=0 ; i<nav_titles.length ;i++){
  79. nav_items.add(new nav_item_class(nav_titles[i], nav_icons.getResourceId(i, -1)));
  80. }
  81.  
  82. navAdapter = new NavigationAdapter(this, nav_items);
  83. navList.setOnItemClickListener(this);
  84. navList.setAdapter(navAdapter);
  85. if (savedInstanceState == null) {
  86. displayFragment(1);
  87. }
  88.  
  89.  
  90. }
  91.  
  92. @Override
  93. public boolean onCreateOptionsMenu(Menu menu) {
  94. // Inflate the menu; this adds items to the action bar if it is present.
  95. getMenuInflater().inflate(R.menu.menu_main, menu);
  96. return true;
  97. }
  98.  
  99. @Override
  100. public boolean onOptionsItemSelected(MenuItem item) {
  101. // Handle action bar item clicks here. The action bar will
  102. // automatically handle clicks on the Home/Up button, so long
  103. // as you specify a parent activity in AndroidManifest.xml.
  104. int id = item.getItemId();
  105.  
  106. //noinspection SimplifiableIfStatement
  107. if (id == R.id.action_settings) {
  108. return true;
  109. }
  110.  
  111. return super.onOptionsItemSelected(item);
  112. }
  113.  
  114. public void displayFragment(int display) {
  115. Fragment fragment = null;
  116. switch (display) {
  117. case 1:
  118. fragment = new Main_Home_fragment();
  119. break;
  120. case 2:
  121. fragment = new Dashboard_fragment();
  122. break;
  123. case 3:
  124. fragment = new BarChartFrag();
  125. break;
  126. case 4:
  127. fragment = new Payment_fragment();
  128. break;
  129. case 5:
  130. fragment = new validate_fragment();
  131. break;
  132. case 6:
  133. fragment = new Feedback_fragment();
  134. break;
  135. case 7:
  136. SignOut();
  137. break;
  138.  
  139.  
  140. }
  141. if (fragment != null) {
  142.  
  143. FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
  144. ft.replace(R.id.content_frame, fragment);
  145. ft.commit();
  146.  
  147. setTitle(nav_titles[display - 1]);
  148.  
  149. mDrawerLayout.closeDrawer(navList);
  150.  
  151. }
  152.  
  153.  
  154. }
  155.  
  156. private void SignOut() {
  157.  
  158. if(_Api == null){
  159. _Api = new API(this);
  160. }
  161.  
  162. _Api.clear_setting();
  163. Intent intent = new Intent(MainActivity.this , LoginActivity.class);
  164. intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
  165. startActivity(intent);
  166. finish();
  167. }
  168.  
  169.  
  170. @Override
  171. public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
  172.  
  173. displayFragment(position);
  174.  
  175. }
  176.  
  177. public void RegisterGCm() {
  178. new AsyncTask<Void, Void , Void>() {
  179.  
  180. @Override
  181. protected Void doInBackground(Void... params) {
  182. String msg = "";
  183.  
  184. if (gcm == null) {
  185. gcm = GoogleCloudMessaging.getInstance(getApplicationContext());
  186. }
  187. try {
  188. RegId = gcm.register(PROJECT_NUMBER);
  189. msg = "register id" + RegId;
  190. } catch (IOException e) {
  191. e.printStackTrace();
  192. msg = e.toString();
  193. }
  194.  
  195. return null;
  196. }
  197.  
  198.  
  199. }.execute(null,null,null);
  200.  
  201. }
  202.  
  203.  
  204.  
  205.  
  206.  
  207. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement