/* * Copyright (c) 2011, 2012 Roberto Tyley * * This file is part of 'Agit' - an Android Git client. * * Agit is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Agit is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses/ . */ package com.madgag.agit; import static android.R.layout.simple_list_item_2; import static com.madgag.agit.CloneLauncherActivity.cloneLauncherIntentFor; import static com.madgag.agit.SuggestedRepo.SUGGESTIONS; import static com.madgag.android.ActionBarUtil.fixImageTilingOn; import static com.madgag.android.ActionBarUtil.homewardsWith; import static com.madgag.android.listviews.ReflectiveHolderFactory.reflectiveFactoryFor; import static com.madgag.android.listviews.ViewInflator.viewInflatorFor; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.ListView; import com.actionbarsherlock.app.ActionBar; import com.actionbarsherlock.view.MenuItem; import com.github.rtyley.android.sherlock.roboguice.activity.RoboSherlockListActivity; import com.madgag.android.listviews.ReflectiveHolderFactory; import com.madgag.android.listviews.ViewHolder; import com.madgag.android.listviews.ViewHolderFactory; import com.madgag.android.listviews.ViewHoldingListAdapter; public class SuggestRepoActivity extends RoboSherlockListActivity { public static final String TAG = "SRA"; private ViewHoldingListAdapter<SuggestedRepo> adapter; /** * Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); fixImageTilingOn(getSupportActionBar()); setContentView(R.layout.list_activity_layout); ActionBar actionBar = getSupportActionBar(); actionBar.setDisplayHomeAsUpEnabled(true); actionBar.setTitle("Some example repos..."); adapter = new ViewHoldingListAdapter<SuggestedRepo>(SUGGESTIONS, viewInflatorFor(this, simple_list_item_2), reflectiveFactoryFor(SuggestedRepoViewHolder.class)); setListAdapter(adapter); } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: return homewardsWith(this, new Intent(this, CloneLauncherActivity.class)); } return super.onOptionsItemSelected(item); } public void onListItemClick(ListView l, View v, int position, long id) { setResult(RESULT_OK, cloneLauncherIntentFor(adapter.getItem(position).getURI().toString())); finish(); } }