Android Open Source - isidore Item List Activity






From Project

Back to project page isidore.

License

The source code is released under:

GNU General Public License

If you think the Android project isidore listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.tbardici.isidore;
//w w  w  . ja  v  a  2s.co  m
import java.util.HashMap;
import java.util.Map;
import java.util.Observable;
import java.util.Observer;

import com.tbardici.isidore.droplet.MyDroplets;

import android.app.ProgressDialog;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.util.Log;
import android.view.Menu;
import android.view.View;

/**
 * @author Teo
 * 
 * An activity representing a list of Items. This activity has different
 * presentations for handset and tablet-size devices. On handsets, the activity
 * presents a list of items, which when touched, lead to a
 * {@link ItemDetailActivity} representing item details. On tablets, the
 * activity presents the list of items and item details side-by-side using two
 * vertical panes.
 * <p>
 * The activity makes heavy use of fragments. The list of items is a
 * {@link ItemListFragment} and the item details (if present) is a
 * {@link ItemDetailFragment}.
 * <p>
 * This activity also implements the required {@link ItemListFragment.Callbacks}
 * interface to listen for item selections.
 */
public class ItemListActivity extends FragmentActivity implements
    ItemListFragment.Callbacks, Observer {

  /**
   * Whether or not the activity is in two-pane mode, i.e. running on a tablet
   * device.
   */
  private boolean mTwoPane;
  private String mLastSelectedDroplet;
  private ProgressDialog mProgressDlg;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_item_list);

    if (findViewById(R.id.item_detail_container) != null) {
      // The detail container view will be present only in the
      // large-screen layouts (res/values-large and
      // res/values-sw600dp). If this view is present, then the
      // activity should be in two-pane mode.
      mTwoPane = true;

      // In two-pane mode, list items should be given the
      // 'activated' state when touched.
      ((ItemListFragment) getSupportFragmentManager().findFragmentById(
          R.id.item_list)).setActivateOnItemClick(true);
    }
      // TODO: If exposing deep links into your app, handle intents here.
  }
  
  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.droplet_menu, menu);
    return true;
  }

  /**
   * Callback method from {@link ItemListFragment.Callbacks} indicating that
   * the item with the given ID was selected.
   */
  @Override
  public void onItemSelected(String id) {
    mLastSelectedDroplet = id;
    if (mTwoPane) {
      // In two-pane mode, show the detail view in this activity by
      // adding or replacing the detail fragment using a
      // fragment transaction.
      Bundle arguments = new Bundle();
      arguments.putString(ItemDetailFragment.ARG_ITEM_ID, id);
      ItemDetailFragment fragment = new ItemDetailFragment();
      fragment.setArguments(arguments);
      getSupportFragmentManager().beginTransaction()
          .replace(R.id.item_detail_container, fragment).commit();

    } else {
      // In single-pane mode, simply start the detail activity
      // for the selected item ID.
      Intent detailIntent = new Intent(this, ItemDetailActivity.class);
      detailIntent.putExtra(ItemDetailFragment.ARG_ITEM_ID, id);
      startActivity(detailIntent);
    }
  }
  
  public void rebootDroplet(View view){
    MyDroplets.Droplet droplet = MyDroplets.ITEM_MAP.get(mLastSelectedDroplet);
    Map<String, String> args = new HashMap<String, String>();
    args.put("droplet_id", Integer.toString(droplet.id));
    LongDurationCall ldc = new LongDurationCall(DOApi.API.DROPLET_REBOOT, args);
    ldc.addObserver(this);
    ldc.run();
    Log.i("isidore", "something.");
    
    mProgressDlg = new ProgressDialog(this);
    mProgressDlg.setTitle("Rebooting machine: " + mLastSelectedDroplet);
    mProgressDlg.setMessage("Percent done: 0");
    mProgressDlg.show();
  }

  @Override
  public void update(final Observable observable, final Object data) {
    if (data.toString().equals("100")){
      this.runOnUiThread(new Runnable() {
        public void run() {
          mProgressDlg.dismiss();
          observable.deleteObservers();
        }
      });
      
    } else {
      this.runOnUiThread(new Runnable() {
        public void run() {
          mProgressDlg.setMessage(data.toString());
        }
      });
      
    }
    
  }
}




Java Source Code List

com.tbardici.isidore.CallDOApiAsync.java
com.tbardici.isidore.CreateDropletActivity.java
com.tbardici.isidore.DCConfirmDialogFragment.java
com.tbardici.isidore.DOApi.java
com.tbardici.isidore.DrawablePreviewActivity.java
com.tbardici.isidore.DropletImage.java
com.tbardici.isidore.DropletListAdapter.java
com.tbardici.isidore.DropletType.java
com.tbardici.isidore.IsidoreSettings.java
com.tbardici.isidore.ItemDetailActivity.java
com.tbardici.isidore.ItemDetailFragment.java
com.tbardici.isidore.ItemListActivity.java
com.tbardici.isidore.ItemListFragment.java
com.tbardici.isidore.LoadDropletsAsync.java
com.tbardici.isidore.LongDurationCall.java
com.tbardici.isidore.MainActivity.java
com.tbardici.isidore.Region.java
com.tbardici.isidore.droplet.MyDroplets.java