/* * Copyright (C) 2012 The Android Open Source Project * * 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 com.example.mapdemo; import android.app.ListActivity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.ListAdapter; import android.widget.ListView; /** * The main activity of the API library demo gallery. * <p> * The main layout lists the demonstrated features, with buttons to launch them. */ public final class MainActivity extends ListActivity { /** * A custom array adapter that shows a {@link FeatureView} containing details about the demo. */ private static class CustomArrayAdapter extends ArrayAdapter<DemoDetails> { /** * @param demos An array containing the details of the demos to be displayed. */ public CustomArrayAdapter(Context context, DemoDetails[] demos) { super(context, R.layout.feature, R.id.title, demos); } @Override public View getView(int position, View convertView, ViewGroup parent) { FeatureView featureView; if (convertView instanceof FeatureView) { featureView = (FeatureView) convertView; } else { featureView = new FeatureView(getContext()); } DemoDetails demo = getItem(position); featureView.setTitleId(demo.titleId); featureView.setDescriptionId(demo.descriptionId); return featureView; } } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); ListAdapter adapter = new CustomArrayAdapter(this, DemoDetailsList.DEMOS); setListAdapter(adapter); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.activity_main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle item selection if (item.getItemId() == R.id.menu_legal) { startActivity(new Intent(this, LegalInfoActivity.class)); return true; } return super.onOptionsItemSelected(item); } @Override protected void onListItemClick(ListView l, View v, int position, long id) { DemoDetails demo = (DemoDetails) getListAdapter().getItem(position); startActivity(new Intent(this, demo.activityClass)); } }