Android Open Source - bitfynd-wallet-android Wallet Addresses Fragment






From Project

Back to project page bitfynd-wallet-android.

License

The source code is released under:

GNU General Public License

If you think the Android project bitfynd-wallet-android 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

/*
 * Copyright 2011-2014 the original author or authors.
 */* www .jav  a  2s  .c  o m*/
 * This program 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.
 *
 * This program 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 de.schildbach.wallet.ui;

import java.util.Collections;
import java.util.Comparator;
import java.util.List;

import javax.annotation.Nonnull;

import org.bitcoinj.core.AbstractWalletEventListener;
import org.bitcoinj.core.Address;
import org.bitcoinj.core.ECKey;
import org.bitcoinj.core.Wallet;
import org.bitcoinj.core.WalletEventListener;
import org.bitcoinj.uri.BitcoinURI;
import org.bitcoinj.utils.Threading;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import android.app.Activity;
import android.content.ClipData;
import android.content.ClipboardManager;
import android.content.ContentResolver;
import android.content.Context;
import android.content.Intent;
import android.database.ContentObserver;
import android.net.Uri;
import android.os.Bundle;
import android.os.Handler;
import android.support.v7.view.ActionMode;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.widget.BaseAdapter;
import android.widget.ListAdapter;
import android.widget.ListView;
import de.schildbach.wallet.AddressBookProvider;
import de.schildbach.wallet.BuildConfig;
import de.schildbach.wallet.Constants;
import de.schildbach.wallet.WalletApplication;
import de.schildbach.wallet.util.BitmapFragment;
import de.schildbach.wallet.util.Qr;
import de.schildbach.wallet.util.WalletUtils;
import de.schildbach.wallet.util.WholeStringBuilder;
import de.schildbach.wallet.R;

/**
 * @author Andreas Schildbach
 */
public final class WalletAddressesFragment extends FancyListFragment
{
  private AddressBookActivity activity;
  private WalletApplication application;
  private Wallet wallet;
  private ClipboardManager clipboardManager;
  private ContentResolver contentResolver;

  private WalletAddressesAdapter adapter;

  private static final Logger log = LoggerFactory.getLogger(WalletAddressesFragment.class);

  @Override
  public void onAttach(final Activity activity)
  {
    super.onAttach(activity);

    this.activity = (AddressBookActivity) activity;
    this.application = (WalletApplication) activity.getApplication();
    this.wallet = application.getWallet();
    this.clipboardManager = (ClipboardManager) activity.getSystemService(Context.CLIPBOARD_SERVICE);
    this.contentResolver = activity.getContentResolver();
  }

  @Override
  public void onCreate(final Bundle savedInstanceState)
  {
    super.onCreate(savedInstanceState);

    setHasOptionsMenu(true);

    adapter = new WalletAddressesAdapter(activity, wallet);

    setListAdapter(adapter);
  }

  @Override
  public void onViewCreated(final View view, final Bundle savedInstanceState)
  {
    super.onViewCreated(view, savedInstanceState);

    setEmptyText(WholeStringBuilder.bold(getString(R.string.address_book_empty_text)));
  }

  @Override
  public void onResume()
  {
    super.onResume();

    contentResolver.registerContentObserver(AddressBookProvider.contentUri(BuildConfig.APPLICATION_ID), true, contentObserver);

    wallet.addEventListener(walletListener, Threading.SAME_THREAD);
    walletListener.onKeysAdded(null); // trigger initial load of keys

    updateView();
  }

  @Override
  public void onPause()
  {
    wallet.removeEventListener(walletListener);

    contentResolver.unregisterContentObserver(contentObserver);

    super.onPause();
  }

  @Override
  public void onCreateOptionsMenu(final Menu menu, final MenuInflater inflater)
  {
    inflater.inflate(R.menu.wallet_addresses_fragment_options, menu);

    super.onCreateOptionsMenu(menu, inflater);
  }

  @Override
  public void onListItemClick(final ListView l, final View v, final int position, final long id)
  {
    activity.startSupportActionMode(new ActionMode.Callback()
    {
      @Override
      public boolean onCreateActionMode(final ActionMode mode, final Menu menu)
      {
        final MenuInflater inflater = mode.getMenuInflater();
        inflater.inflate(R.menu.wallet_addresses_context, menu);

        return true;
      }

      @Override
      public boolean onPrepareActionMode(final ActionMode mode, final Menu menu)
      {
        final ECKey key = getKey(position);

        final String address = key.toAddress(Constants.NETWORK_PARAMETERS).toString();
        final String label = AddressBookProvider.resolveLabel(activity, address);
        mode.setTitle(label != null ? label : WalletUtils.formatHash(address, Constants.ADDRESS_FORMAT_GROUP_SIZE, 0));

        return true;
      }

      @Override
      public boolean onActionItemClicked(final ActionMode mode, final MenuItem item)
      {
        switch (item.getItemId())
        {
          case R.id.wallet_addresses_context_edit:
            handleEdit(getAddress(position));

            mode.finish();
            return true;

          case R.id.wallet_addresses_context_show_qr:
            handleShowQr(getAddress(position));

            mode.finish();
            return true;

          case R.id.wallet_addresses_context_copy_to_clipboard:
            handleCopyToClipboard(getAddress(position));

            mode.finish();
            return true;

          case R.id.wallet_addresses_context_browse:
            startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Constants.EXPLORE_BASE_URL + "address/"
                + getAddress(position).toString())));

            mode.finish();
            return true;
        }

        return false;
      }

      @Override
      public void onDestroyActionMode(final ActionMode mode)
      {
      }

      private ECKey getKey(final int position)
      {
        return (ECKey) getListAdapter().getItem(position);
      }

      private Address getAddress(final int position)
      {
        return getKey(position).toAddress(Constants.NETWORK_PARAMETERS);
      }

      private void handleEdit(@Nonnull final Address address)
      {
        EditAddressBookEntryFragment.edit(getFragmentManager(), address.toString());
      }

      private void handleShowQr(@Nonnull final Address address)
      {
        final String uri = BitcoinURI.convertToBitcoinURI(address, null, null, null);
                final int size = getResources().getDimensionPixelSize(R.dimen.bitmap_dialog_qr_size);
        BitmapFragment.show(getFragmentManager(), Qr.bitmap(uri, size));
      }

      private void handleCopyToClipboard(@Nonnull final Address address)
      {
        clipboardManager.setPrimaryClip(ClipData.newPlainText("Bitcoin address", address.toString()));
        log.info("address copied to clipboard: {}", address.toString());
        activity.toast(R.string.wallet_address_fragment_clipboard_msg);
      }
    });
  }

  private void updateView()
  {
    final ListAdapter adapter = getListAdapter();
    if (adapter != null)
      ((BaseAdapter) adapter).notifyDataSetChanged();
  }

  private final Handler handler = new Handler();

  private final ContentObserver contentObserver = new ContentObserver(handler)
  {
    @Override
    public void onChange(final boolean selfChange)
    {
      updateView();
    }
  };

  private final WalletEventListener walletListener = new AbstractWalletEventListener()
  {
    @Override
    public void onKeysAdded(final List<ECKey> keysAdded)
    {
      final List<ECKey> keys = wallet.getImportedKeys();

      Collections.sort(keys, new Comparator<ECKey>()
      {
        @Override
        public int compare(final ECKey lhs, final ECKey rhs)
        {
          final boolean lhsRotating = wallet.isKeyRotating(lhs);
          final boolean rhsRotating = wallet.isKeyRotating(rhs);

          if (lhsRotating != rhsRotating)
            return lhsRotating ? 1 : -1;

          if (lhs.getCreationTimeSeconds() != rhs.getCreationTimeSeconds())
            return lhs.getCreationTimeSeconds() > rhs.getCreationTimeSeconds() ? 1 : -1;

          return 0;
        }
      });

      handler.post(new Runnable()
      {
        @Override
        public void run()
        {
          adapter.replace(keys);
        }
      });
    }
  };
}




Java Source Code List

de.schildbach.wallet.AddressBookProvider.java
de.schildbach.wallet.Configuration.java
de.schildbach.wallet.Constants.java
de.schildbach.wallet.ExchangeRatesProvider.java
de.schildbach.wallet.FileAttachmentProvider.java
de.schildbach.wallet.WalletApplication.java
de.schildbach.wallet.WalletBalanceWidgetProvider.java
de.schildbach.wallet.camera.CameraManager.java
de.schildbach.wallet.data.PaymentIntent.java
de.schildbach.wallet.integration.android.BitcoinIntegration.java
de.schildbach.wallet.offline.AcceptBluetoothService.java
de.schildbach.wallet.offline.AcceptBluetoothThread.java
de.schildbach.wallet.offline.DirectPaymentTask.java
de.schildbach.wallet.service.AutosyncReceiver.java
de.schildbach.wallet.service.BlockchainServiceImpl.java
de.schildbach.wallet.service.BlockchainService.java
de.schildbach.wallet.service.BlockchainStateLoader.java
de.schildbach.wallet.service.BlockchainState.java
de.schildbach.wallet.service.UpgradeWalletService.java
de.schildbach.wallet.ui.AbstractBindServiceActivity.java
de.schildbach.wallet.ui.AbstractWalletActivity.java
de.schildbach.wallet.ui.AddressAndLabel.java
de.schildbach.wallet.ui.AddressBookActivity.java
de.schildbach.wallet.ui.BlockListFragment.java
de.schildbach.wallet.ui.CurrencyAmountView.java
de.schildbach.wallet.ui.CurrencyCalculatorLink.java
de.schildbach.wallet.ui.CurrencySymbolDrawable.java
de.schildbach.wallet.ui.CurrencyTextView.java
de.schildbach.wallet.ui.DialogBuilder.java
de.schildbach.wallet.ui.EditAddressBookEntryFragment.java
de.schildbach.wallet.ui.EncryptKeysDialogFragment.java
de.schildbach.wallet.ui.ExchangeRateLoader.java
de.schildbach.wallet.ui.ExchangeRatesActivity.java
de.schildbach.wallet.ui.ExchangeRatesFragment.java
de.schildbach.wallet.ui.FancyListFragment.java
de.schildbach.wallet.ui.FileAdapter.java
de.schildbach.wallet.ui.HelpDialogFragment.java
de.schildbach.wallet.ui.ImportDialogButtonEnablerListener.java
de.schildbach.wallet.ui.InputParser.java
de.schildbach.wallet.ui.MaybeMaintenanceFragment.java
de.schildbach.wallet.ui.NetworkMonitorActivity.java
de.schildbach.wallet.ui.PeerListFragment.java
de.schildbach.wallet.ui.ProgressDialogFragment.java
de.schildbach.wallet.ui.ReportIssueDialogBuilder.java
de.schildbach.wallet.ui.RequestCoinsActivity.java
de.schildbach.wallet.ui.RequestCoinsFragment.java
de.schildbach.wallet.ui.RestoreWalletActivity.java
de.schildbach.wallet.ui.ScanActivity.java
de.schildbach.wallet.ui.ScannerView.java
de.schildbach.wallet.ui.SendCoinsQrActivity.java
de.schildbach.wallet.ui.SendingAddressesFragment.java
de.schildbach.wallet.ui.ShowPasswordCheckListener.java
de.schildbach.wallet.ui.TransactionsListAdapter.java
de.schildbach.wallet.ui.TransactionsListFragment.java
de.schildbach.wallet.ui.WalletActionsFragment.java
de.schildbach.wallet.ui.WalletActivity.java
de.schildbach.wallet.ui.WalletAddressFragment.java
de.schildbach.wallet.ui.WalletAddressesAdapter.java
de.schildbach.wallet.ui.WalletAddressesFragment.java
de.schildbach.wallet.ui.WalletBalanceFragment.java
de.schildbach.wallet.ui.WalletBalanceLoader.java
de.schildbach.wallet.ui.WalletDisclaimerFragment.java
de.schildbach.wallet.ui.WalletTransactionsFragment.java
de.schildbach.wallet.ui.preference.AboutFragment.java
de.schildbach.wallet.ui.preference.DiagnosticsFragment.java
de.schildbach.wallet.ui.preference.PreferenceActivity.java
de.schildbach.wallet.ui.preference.SettingsFragment.java
de.schildbach.wallet.ui.send.DecodePrivateKeyTask.java
de.schildbach.wallet.ui.send.DeriveKeyTask.java
de.schildbach.wallet.ui.send.MaintenanceDialogFragment.java
de.schildbach.wallet.ui.send.RequestPaymentRequestTask.java
de.schildbach.wallet.ui.send.RequestWalletBalanceTask.java
de.schildbach.wallet.ui.send.SendCoinsActivity.java
de.schildbach.wallet.ui.send.SendCoinsFragment.java
de.schildbach.wallet.ui.send.SendCoinsOfflineTask.java
de.schildbach.wallet.ui.send.SweepWalletActivity.java
de.schildbach.wallet.ui.send.SweepWalletFragment.java
de.schildbach.wallet.util.Base43.java
de.schildbach.wallet.util.BitmapFragment.java
de.schildbach.wallet.util.Bluetooth.java
de.schildbach.wallet.util.CircularProgressView.java
de.schildbach.wallet.util.CrashReporter.java
de.schildbach.wallet.util.Crypto.java
de.schildbach.wallet.util.Formats.java
de.schildbach.wallet.util.GenericUtils.java
de.schildbach.wallet.util.HttpGetThread.java
de.schildbach.wallet.util.Io.java
de.schildbach.wallet.util.Iso8601Format.java
de.schildbach.wallet.util.LinuxSecureRandom.java
de.schildbach.wallet.util.MonetarySpannable.java
de.schildbach.wallet.util.Nfc.java
de.schildbach.wallet.util.Qr.java
de.schildbach.wallet.util.ThrottlingWalletChangeListener.java
de.schildbach.wallet.util.ViewPagerTabs.java
de.schildbach.wallet.util.WalletUtils.java
de.schildbach.wallet.util.WholeStringBuilder.java