Merge branch 'feat_ui_improvements' of https://github.com/Agorise/crystal-wallet-android into develop
This commit is contained in:
commit
a7ba6f5c6b
20 changed files with 618 additions and 371 deletions
|
@ -18,8 +18,7 @@
|
|||
android:configChanges="locale"
|
||||
android:theme="@style/AppTheme">
|
||||
<activity
|
||||
android:name=".activities.LicenseActivity"
|
||||
android:theme="@style/AppTheme.NoActionBar">
|
||||
android:name=".activities.LicenseActivity">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
|
@ -31,7 +30,7 @@
|
|||
android:theme="@style/AppTheme.NoActionBar">
|
||||
</activity>
|
||||
<activity android:name=".activities.BoardActivity"
|
||||
android:theme="@style/AppTheme.NoActionBar" >
|
||||
android:theme="@style/AppTheme.NoActionBar">
|
||||
</activity>
|
||||
<activity android:name=".activities.CreateSeedActivity" >
|
||||
</activity>
|
||||
|
|
|
@ -18,6 +18,7 @@ import butterknife.BindView;
|
|||
import butterknife.ButterKnife;
|
||||
import butterknife.OnClick;
|
||||
import cy.agorise.crystalwallet.R;
|
||||
import cy.agorise.crystalwallet.fragments.BackupsSettingsFragment;
|
||||
import cy.agorise.crystalwallet.models.AccountSeed;
|
||||
import cy.agorise.crystalwallet.viewmodels.AccountSeedViewModel;
|
||||
|
||||
|
@ -28,7 +29,7 @@ public class BackupSeedActivity extends AppCompatActivity {
|
|||
|
||||
@BindView(R.id.tvBrainKey)
|
||||
TextView textfieldBrainkey;
|
||||
@BindView(R.id.btnOk)
|
||||
@BindView(R.id.btnCancel)
|
||||
Button btnOk;
|
||||
@BindView(R.id.btnCopy)
|
||||
Button btnCopy;
|
||||
|
@ -60,14 +61,14 @@ public class BackupSeedActivity extends AppCompatActivity {
|
|||
accountSeedViewModel.loadSeed(seedId);
|
||||
|
||||
} else {
|
||||
|
||||
finish();
|
||||
}
|
||||
}
|
||||
|
||||
@OnClick(R.id.btnOk)
|
||||
@OnClick(R.id.btnCancel)
|
||||
public void btnOkClick(){
|
||||
Intent intent = new Intent(this, IntroActivity.class);
|
||||
startActivity(intent);
|
||||
finish();
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -13,6 +13,7 @@ import cy.agorise.crystalwallet.R
|
|||
import cy.agorise.crystalwallet.dialogs.material.CrystalDialog
|
||||
import cy.agorise.crystalwallet.requestmanagers.CryptoNetInfoRequests
|
||||
import cy.agorise.crystalwallet.requestmanagers.ValidateCreateBitsharesAccountRequest
|
||||
import cy.agorise.crystalwallet.requestmanagers.ValidateExistBitsharesAccountRequest
|
||||
import cy.agorise.crystalwallet.viewmodels.validators.customImpl.interfaces.UIValidatorListener
|
||||
import cy.agorise.crystalwallet.viewmodels.validators.customImpl.validationFields.BitsharesAccountNameValidation
|
||||
import cy.agorise.crystalwallet.viewmodels.validators.customImpl.validationFields.BitsharesAccountNameValidation.OnAccountExist
|
||||
|
@ -62,16 +63,12 @@ class CreateSeedActivity : CustomActivity() {
|
|||
runOnUiThread {
|
||||
val customTextInputEditText = customValidationField.currentView as CustomTextInputEditText
|
||||
customTextInputEditText.error = null
|
||||
customTextInputEditText.fieldValidatorModel.setValid()
|
||||
}
|
||||
|
||||
} catch (e: Exception) {
|
||||
e.printStackTrace()
|
||||
}
|
||||
|
||||
/*
|
||||
* Validate if can continue
|
||||
* */
|
||||
validateFieldsToContinue()
|
||||
}
|
||||
|
||||
override fun onValidationFailed(customValidationField: CustomValidationField) {
|
||||
|
@ -82,6 +79,7 @@ class CreateSeedActivity : CustomActivity() {
|
|||
runOnUiThread {
|
||||
val customTextInputEditText = customValidationField.currentView as CustomTextInputEditText
|
||||
customTextInputEditText.error = customTextInputEditText.fieldValidatorModel.message
|
||||
customTextInputEditText.fieldValidatorModel.setInvalid()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -131,6 +129,8 @@ class CreateSeedActivity : CustomActivity() {
|
|||
* Validate continue to create account
|
||||
* */
|
||||
validateFieldsToContinue()
|
||||
|
||||
|
||||
}
|
||||
|
||||
@OnTextChanged(value = R.id.tietPinConfirmation, callback = OnTextChanged.Callback.AFTER_TEXT_CHANGED)
|
||||
|
@ -148,9 +148,9 @@ class CreateSeedActivity : CustomActivity() {
|
|||
this.fieldsValidator.validate()
|
||||
|
||||
/*
|
||||
* Always disable till the server response comes
|
||||
* Validate continue to create account
|
||||
* */
|
||||
disableCreate()
|
||||
validateFieldsToContinue()
|
||||
}
|
||||
|
||||
@OnClick(R.id.btnCancel)
|
||||
|
@ -221,8 +221,59 @@ class CreateSeedActivity : CustomActivity() {
|
|||
* If the result is true so the user can continue to the creation of the account
|
||||
* */
|
||||
if (result) {
|
||||
enableCreate()
|
||||
|
||||
/*
|
||||
* Show the dialog for connection with the server
|
||||
* */
|
||||
val creatingAccountMaterialDialog = CrystalDialog(globalActivity)
|
||||
creatingAccountMaterialDialog.setText(globalActivity.resources.getString(R.string.window_create_seed_Server_validation))
|
||||
creatingAccountMaterialDialog.progress()
|
||||
creatingAccountMaterialDialog.show()
|
||||
|
||||
/*
|
||||
* Validate the account does not exists
|
||||
* */
|
||||
val request = ValidateExistBitsharesAccountRequest(tietAccountName?.text.toString())
|
||||
request.setListener {
|
||||
|
||||
/*
|
||||
* Dismiss the dialog of loading
|
||||
* */
|
||||
creatingAccountMaterialDialog.dismiss()
|
||||
|
||||
if (request.accountExists) {
|
||||
|
||||
/*
|
||||
* The account exists and is not valid
|
||||
* */
|
||||
tietAccountName.fieldValidatorModel.setInvalid()
|
||||
tietAccountName.fieldValidatorModel.message = tietAccountName.resources.getString(R.string.account_name_already_exist)
|
||||
|
||||
/*
|
||||
* Disaible button create
|
||||
* */
|
||||
disableCreate()
|
||||
|
||||
} else {
|
||||
|
||||
/*
|
||||
* Passed all validations
|
||||
* */
|
||||
tietAccountName.fieldValidatorModel.setValid()
|
||||
|
||||
/*
|
||||
* Enable button create
|
||||
* */
|
||||
enableCreate()
|
||||
}
|
||||
}
|
||||
CryptoNetInfoRequests.getInstance().addRequest(request)
|
||||
|
||||
} else {
|
||||
|
||||
/*
|
||||
* Disaible button create
|
||||
* */
|
||||
disableCreate()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,6 +8,7 @@ import java.util.Date;
|
|||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
import cy.agorise.crystalwallet.application.constant.BitsharesConstant;
|
||||
import cy.agorise.crystalwallet.dao.BitsharesAssetDao;
|
||||
import cy.agorise.crystalwallet.dao.CryptoCoinBalanceDao;
|
||||
import cy.agorise.crystalwallet.dao.CryptoCurrencyDao;
|
||||
|
@ -78,17 +79,15 @@ public abstract class GrapheneApiGenerator {
|
|||
/**
|
||||
* This is used for manager each listener in the subscription thread
|
||||
*/
|
||||
private static HashMap<Long, SubscriptionListener> currentBitsharesListener = new HashMap<>();
|
||||
|
||||
|
||||
private static HashMap<Long,SubscriptionListener> currentBitsharesListener = new HashMap<>();
|
||||
|
||||
/**
|
||||
* Retrieves the data of an account searching by it's id
|
||||
*
|
||||
* @param accountId The accountId to retrieve
|
||||
* @param request The Api request object, to answer this petition
|
||||
* @param request The Api request object, to answer this petition
|
||||
*/
|
||||
public static void getAccountById(String accountId, final ApiRequest request) {
|
||||
public static void getAccountById(String accountId, final ApiRequest request){
|
||||
WebSocketThread thread = new WebSocketThread(new GetAccounts(accountId,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
|
@ -97,7 +96,7 @@ public abstract class GrapheneApiGenerator {
|
|||
List list = (List) response.result;
|
||||
if (list.size() > 0) {
|
||||
if (list.get(0).getClass() == AccountProperties.class) {
|
||||
request.getListener().success(list.get(0), request.getId());
|
||||
request.getListener().success(list.get(0),request.getId());
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -109,7 +108,7 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
|
@ -119,20 +118,17 @@ public abstract class GrapheneApiGenerator {
|
|||
* @param address The address to retrieve
|
||||
* @param request The Api request object, to answer this petition
|
||||
*/
|
||||
public static void getAccountByOwnerOrActiveAddress(Address address, final ApiRequest request) {
|
||||
public static void getAccountByOwnerOrActiveAddress(Address address, final ApiRequest request){
|
||||
WebSocketThread thread = new WebSocketThread(new GetKeyReferences(address, true,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
final List<List<UserAccount>> resp = (List<List<UserAccount>>) response.result;
|
||||
if (resp.size() > 0) {
|
||||
if(resp.size() > 0){
|
||||
List<UserAccount> accounts = resp.get(0);
|
||||
if (accounts.size() > 0) {
|
||||
for (UserAccount account : accounts) {
|
||||
request.getListener().success(account, request.getId());
|
||||
}
|
||||
}
|
||||
}
|
||||
if(accounts.size() > 0){
|
||||
for(UserAccount account : accounts) {
|
||||
request.getListener().success(account,request.getId());}}}
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
|
||||
|
@ -140,7 +136,7 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
|
||||
thread.start();
|
||||
}
|
||||
|
@ -149,25 +145,25 @@ public abstract class GrapheneApiGenerator {
|
|||
* Gets the Transaction for an Account
|
||||
*
|
||||
* @param accountGrapheneId The account id to search
|
||||
* @param start The start index of the transaction list
|
||||
* @param stop The stop index of the transaction list
|
||||
* @param limit the maximun transactions to retrieve
|
||||
* @param request The Api request object, to answer this petition
|
||||
* @param start The start index of the transaction list
|
||||
* @param stop The stop index of the transaction list
|
||||
* @param limit the maximun transactions to retrieve
|
||||
* @param request The Api request object, to answer this petition
|
||||
*/
|
||||
public static void getAccountTransaction(String accountGrapheneId, int start, int stop,
|
||||
int limit, final ApiRequest request) {
|
||||
int limit, final ApiRequest request){
|
||||
WebSocketThread thread = new WebSocketThread(new GetRelativeAccountHistory(new UserAccount(accountGrapheneId),
|
||||
start, limit, stop, new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
request.getListener().success(response.result, request.getId());
|
||||
request.getListener().success(response.result,request.getId());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
|
@ -175,18 +171,18 @@ public abstract class GrapheneApiGenerator {
|
|||
* Retrieves the account id by the name of the account
|
||||
*
|
||||
* @param accountName The account Name to find
|
||||
* @param request The Api request object, to answer this petition
|
||||
* @param request The Api request object, to answer this petition
|
||||
*/
|
||||
public static void getAccountByName(String accountName, final ApiRequest request) {
|
||||
public static void getAccountByName(String accountName, final ApiRequest request){
|
||||
WebSocketThread thread = new WebSocketThread(new GetAccountByName(accountName,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
AccountProperties accountProperties = (AccountProperties) response.result;
|
||||
if (accountProperties == null) {
|
||||
AccountProperties accountProperties = (AccountProperties)response.result;
|
||||
if(accountProperties == null){
|
||||
request.getListener().fail(request.getId());
|
||||
} else {
|
||||
request.getListener().success(accountProperties, request.getId());
|
||||
}else{
|
||||
request.getListener().success(accountProperties,request.getId());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -194,7 +190,7 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
|
@ -202,18 +198,18 @@ public abstract class GrapheneApiGenerator {
|
|||
* Retrieves the account id by the name of the account
|
||||
*
|
||||
* @param accountName The account Name to find
|
||||
* @param request The Api request object, to answer this petition
|
||||
* @param request The Api request object, to answer this petition
|
||||
*/
|
||||
public static void getAccountIdByName(String accountName, final ApiRequest request) {
|
||||
public static void getAccountIdByName(String accountName, final ApiRequest request){
|
||||
WebSocketThread thread = new WebSocketThread(new GetAccountByName(accountName,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
AccountProperties accountProperties = (AccountProperties) response.result;
|
||||
if (accountProperties == null) {
|
||||
request.getListener().success(null, request.getId());
|
||||
} else {
|
||||
request.getListener().success(accountProperties.id, request.getId());
|
||||
AccountProperties accountProperties = (AccountProperties)response.result;
|
||||
if(accountProperties == null){
|
||||
request.getListener().success(null,request.getId());
|
||||
}else{
|
||||
request.getListener().success(accountProperties.id,request.getId());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -221,7 +217,7 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
|
@ -229,23 +225,23 @@ public abstract class GrapheneApiGenerator {
|
|||
* Broadcast a transaction, this is use for sending funds
|
||||
*
|
||||
* @param transaction The graphene transaction
|
||||
* @param feeAsset The feeAseet, this needs only the id of the asset
|
||||
* @param request the api request object, to answer this petition
|
||||
* @param feeAsset The feeAseet, this needs only the id of the asset
|
||||
* @param request the api request object, to answer this petition
|
||||
*/
|
||||
public static void broadcastTransaction(Transaction transaction, Asset feeAsset,
|
||||
final ApiRequest request) {
|
||||
final ApiRequest request){
|
||||
WebSocketThread thread = new WebSocketThread(new TransactionBroadcastSequence(transaction,
|
||||
feeAsset, new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
request.getListener().success(true, request.getId());
|
||||
request.getListener().success(true,request.getId());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
|
@ -253,20 +249,20 @@ public abstract class GrapheneApiGenerator {
|
|||
* This gets the asset information using only the asset name
|
||||
*
|
||||
* @param assetNames The list of the names of the assets to be retrieve
|
||||
* @param request the api request object, to answer this petition
|
||||
* @param request the api request object, to answer this petition
|
||||
*/
|
||||
public static void getAssetByName(ArrayList<String> assetNames, final ApiRequest request) {
|
||||
public static void getAssetByName(ArrayList<String> assetNames, final ApiRequest request){
|
||||
|
||||
WebSocketThread thread = new WebSocketThread(new LookupAssetSymbols(assetNames, true,
|
||||
WebSocketThread thread = new WebSocketThread(new LookupAssetSymbols(assetNames,true,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<Asset> assets = (List<Asset>) response.result;
|
||||
if (assets.size() <= 0) {
|
||||
if(assets.size() <= 0){
|
||||
request.getListener().fail(request.getId());
|
||||
} else {
|
||||
}else{
|
||||
ArrayList<BitsharesAsset> responseAssets = new ArrayList<>();
|
||||
for (Asset asset : assets) {
|
||||
for(Asset asset: assets){
|
||||
//TODO asset type
|
||||
BitsharesAsset.Type assetType = BitsharesAsset.Type.UIA;
|
||||
/*if(asset.getAssetType().equals(Asset.AssetType.CORE_ASSET)){
|
||||
|
@ -279,10 +275,10 @@ public abstract class GrapheneApiGenerator {
|
|||
assetType = BitsharesAsset.Type.PREDICTION_MARKET;
|
||||
}*/
|
||||
BitsharesAsset responseAsset = new BitsharesAsset(asset.getSymbol(),
|
||||
asset.getPrecision(), asset.getObjectId(), assetType);
|
||||
asset.getPrecision(),asset.getObjectId(),assetType);
|
||||
responseAssets.add(responseAsset);
|
||||
}
|
||||
request.getListener().success(responseAssets, request.getId());
|
||||
request.getListener().success(responseAssets,request.getId());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -290,32 +286,31 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the asset ifnormation using the id of the net
|
||||
*
|
||||
* @param assetIds The list of the ids to retrieve
|
||||
* @param request the api request object, to answer this petition
|
||||
* @param request the api request object, to answer this petition
|
||||
*/
|
||||
public static void getAssetById(ArrayList<String> assetIds, final ApiRequest request) {
|
||||
public static void getAssetById(ArrayList<String> assetIds, final ApiRequest request){
|
||||
ArrayList<Asset> assets = new ArrayList<>();
|
||||
for (String assetId : assetIds) {
|
||||
for(String assetId : assetIds){
|
||||
Asset asset = new Asset(assetId);
|
||||
assets.add(asset);
|
||||
}
|
||||
|
||||
WebSocketThread thread = new WebSocketThread(new LookupAssetSymbols(assets, true, new WitnessResponseListener() {
|
||||
WebSocketThread thread = new WebSocketThread(new LookupAssetSymbols(assets,true, new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<Asset> assets = (List<Asset>) response.result;
|
||||
if (assets.size() <= 0) {
|
||||
if(assets.size() <= 0){
|
||||
request.getListener().fail(request.getId());
|
||||
} else {
|
||||
}else{
|
||||
ArrayList<BitsharesAsset> responseAssets = new ArrayList<>();
|
||||
for (Asset asset : assets) {
|
||||
for(Asset asset: assets){
|
||||
//TODO asset type
|
||||
BitsharesAsset.Type assetType = BitsharesAsset.Type.UIA;
|
||||
/*if(asset.getAssetType().equals(Asset.AssetType.CORE_ASSET)){
|
||||
|
@ -328,10 +323,10 @@ public abstract class GrapheneApiGenerator {
|
|||
assetType = BitsharesAsset.Type.PREDICTION_MARKET;
|
||||
}*/
|
||||
BitsharesAsset responseAsset = new BitsharesAsset(asset.getSymbol(),
|
||||
asset.getPrecision(), asset.getObjectId(), assetType);
|
||||
asset.getPrecision(),asset.getObjectId(),assetType);
|
||||
responseAssets.add(responseAsset);
|
||||
}
|
||||
request.getListener().success(responseAssets, request.getId());
|
||||
request.getListener().success(responseAssets,request.getId());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -339,20 +334,20 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Subscribe a bitshares account to receive real time updates
|
||||
*
|
||||
* @param accountId The id opf the database of the account
|
||||
* @param accountBitsharesId The bitshares id of the account
|
||||
* @param context The android context of this application
|
||||
* @param accountId The id opf the database of the account
|
||||
* @param accountBitsharesId The bitshares id of the account
|
||||
* @param context The android context of this application
|
||||
*/
|
||||
public static void subscribeBitsharesAccount(final long accountId, final String accountBitsharesId,
|
||||
final Context context) {
|
||||
if (!currentBitsharesListener.containsKey(accountId)) {
|
||||
final Context context){
|
||||
if(!currentBitsharesListener.containsKey(accountId)){
|
||||
CrystalDatabase db = CrystalDatabase.getAppDatabase(context);
|
||||
final BitsharesAssetDao bitsharesAssetDao = db.bitsharesAssetDao();
|
||||
final CryptoCurrencyDao cryptoCurrencyDao = db.cryptoCurrencyDao();
|
||||
|
@ -365,15 +360,15 @@ public abstract class GrapheneApiGenerator {
|
|||
@Override
|
||||
public void onSubscriptionUpdate(SubscriptionResponse response) {
|
||||
List<Serializable> updatedObjects = (List<Serializable>) response.params.get(1);
|
||||
if (updatedObjects.size() > 0) {
|
||||
for (Serializable update : updatedObjects) {
|
||||
if (update instanceof BroadcastedTransaction) {
|
||||
if(updatedObjects.size() > 0){
|
||||
for(Serializable update : updatedObjects){
|
||||
if(update instanceof BroadcastedTransaction){
|
||||
BroadcastedTransaction transactionUpdate = (BroadcastedTransaction) update;
|
||||
for (BaseOperation operation : transactionUpdate.getTransaction().getOperations()) {
|
||||
if (operation instanceof TransferOperation) {
|
||||
for(BaseOperation operation : transactionUpdate.getTransaction().getOperations()){
|
||||
if(operation instanceof TransferOperation){
|
||||
final TransferOperation tOperation = (TransferOperation) operation;
|
||||
if (tOperation.getFrom().getObjectId().equals(accountBitsharesId) || tOperation.getTo().getObjectId().equals(accountBitsharesId)) {
|
||||
GrapheneApiGenerator.getAccountBalance(accountId, accountBitsharesId, context);
|
||||
if(tOperation.getFrom().getObjectId().equals(accountBitsharesId) || tOperation.getTo().getObjectId().equals(accountBitsharesId)){
|
||||
GrapheneApiGenerator.getAccountBalance(accountId,accountBitsharesId,context);
|
||||
final CryptoCoinTransaction transaction = new CryptoCoinTransaction();
|
||||
transaction.setAccountId(accountId);
|
||||
transaction.setAmount(tOperation.getAssetAmount().getAmount().longValue());
|
||||
|
@ -384,13 +379,13 @@ public abstract class GrapheneApiGenerator {
|
|||
@Override
|
||||
public void success(Object answer, int idPetition) {
|
||||
ArrayList<BitsharesAsset> assets = (ArrayList<BitsharesAsset>) answer;
|
||||
for (BitsharesAsset asset : assets) {
|
||||
for(BitsharesAsset asset : assets){
|
||||
long idCryptoCurrency = cryptoCurrencyDao.insertCryptoCurrency(asset)[0];
|
||||
BitsharesAssetInfo info = new BitsharesAssetInfo(asset);
|
||||
info.setCryptoCurrencyId(idCryptoCurrency);
|
||||
asset.setId((int) idCryptoCurrency);
|
||||
asset.setId((int)idCryptoCurrency);
|
||||
bitsharesAssetDao.insertBitsharesAssetInfo(info);
|
||||
saveTransaction(transaction, cryptoCurrencyDao.getById(info.getCryptoCurrencyId()), accountBitsharesId, tOperation, context);
|
||||
saveTransaction(transaction,cryptoCurrencyDao.getById(info.getCryptoCurrencyId()),accountBitsharesId,tOperation,context);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -401,9 +396,9 @@ public abstract class GrapheneApiGenerator {
|
|||
});
|
||||
ArrayList<String> assets = new ArrayList<>();
|
||||
assets.add(tOperation.getAssetAmount().getAsset().getObjectId());
|
||||
GrapheneApiGenerator.getAssetById(assets, assetRequest);
|
||||
} else {
|
||||
saveTransaction(transaction, cryptoCurrencyDao.getById(info.getCryptoCurrencyId()), accountBitsharesId, tOperation, context);
|
||||
GrapheneApiGenerator.getAssetById(assets,assetRequest);
|
||||
}else{
|
||||
saveTransaction(transaction,cryptoCurrencyDao.getById(info.getCryptoCurrencyId()),accountBitsharesId,tOperation,context);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -415,62 +410,56 @@ public abstract class GrapheneApiGenerator {
|
|||
}
|
||||
};
|
||||
|
||||
currentBitsharesListener.put(accountId, balanceListener);
|
||||
currentBitsharesListener.put(accountId,balanceListener);
|
||||
bitsharesSubscriptionHub.addSubscriptionListener(balanceListener);
|
||||
try {
|
||||
if (!subscriptionThread.isConnected() && !subscriptionThread.isAlive()) {
|
||||
|
||||
subscriptionThread.start();
|
||||
|
||||
} else if (bitsharesSubscriptionHub != null && !bitsharesSubscriptionHub.isSubscribed()) {
|
||||
bitsharesSubscriptionHub.resubscribe();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
if(!subscriptionThread.isConnected()){
|
||||
subscriptionThread.start();
|
||||
}else if(!bitsharesSubscriptionHub.isSubscribed()){
|
||||
bitsharesSubscriptionHub.resubscribe();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Function to save a transaction retrieved from the update
|
||||
*
|
||||
* @param transaction The transaction db object
|
||||
* @param currency The currency of the transaccion
|
||||
* @param transaction The transaction db object
|
||||
* @param currency The currency of the transaccion
|
||||
* @param accountBitsharesId The id of the account in the bitshares network
|
||||
* @param tOperation The transfer operation fetched from the update
|
||||
* @param context The context of this app
|
||||
* @param tOperation The transfer operation fetched from the update
|
||||
* @param context The context of this app
|
||||
*/
|
||||
private static void saveTransaction(CryptoCoinTransaction transaction, CryptoCurrency currency,
|
||||
String accountBitsharesId, TransferOperation tOperation,
|
||||
Context context) {
|
||||
transaction.setIdCurrency((int) currency.getId());
|
||||
String accountBitsharesId, TransferOperation tOperation ,
|
||||
Context context){
|
||||
transaction.setIdCurrency((int)currency.getId());
|
||||
transaction.setConfirmed(true); //graphene transaction are always confirmed
|
||||
transaction.setFrom(tOperation.getFrom().getObjectId());
|
||||
transaction.setInput(!tOperation.getFrom().getObjectId().equals(accountBitsharesId));
|
||||
transaction.setTo(tOperation.getTo().getObjectId());
|
||||
transaction.setDate(new Date());
|
||||
CrystalDatabase.getAppDatabase(context).transactionDao().insertTransaction(transaction);
|
||||
if (transaction.getInput()) {
|
||||
CryptoNetEvents.getInstance().fireEvent(new ReceivedFundsCryptoNetEvent(transaction.getAccount(), currency, transaction.getAmount()));
|
||||
if(transaction.getInput()){
|
||||
CryptoNetEvents.getInstance().fireEvent(new ReceivedFundsCryptoNetEvent(transaction.getAccount(),currency,transaction.getAmount()));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Cancels all bitshares account subscriptions
|
||||
*/
|
||||
public static void cancelBitsharesAccountSubscriptions() {
|
||||
public static void cancelBitsharesAccountSubscriptions(){
|
||||
bitsharesSubscriptionHub.cancelSubscriptions();
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve the account balance of an account
|
||||
*
|
||||
* @param accountId The dataabase id of the account
|
||||
* @param accountId The dataabase id of the account
|
||||
* @param accountGrapheneId The bitshares id of the account
|
||||
* @param context The android context of this application
|
||||
* @param context The android context of this application
|
||||
*/
|
||||
public static void getAccountBalance(final long accountId, final String accountGrapheneId,
|
||||
final Context context) {
|
||||
final Context context){
|
||||
|
||||
CrystalDatabase db = CrystalDatabase.getAppDatabase(context);
|
||||
final CryptoCoinBalanceDao balanceDao = db.cryptoCoinBalanceDao();
|
||||
|
@ -481,19 +470,19 @@ public abstract class GrapheneApiGenerator {
|
|||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<AssetAmount> balances = (List<AssetAmount>) response.result;
|
||||
for (final AssetAmount balance : balances) {
|
||||
for(final AssetAmount balance : balances){
|
||||
final CryptoCoinBalance ccBalance = new CryptoCoinBalance();
|
||||
ccBalance.setAccountId(accountId);
|
||||
ccBalance.setBalance(balance.getAmount().longValue());
|
||||
BitsharesAssetInfo assetInfo = bitsharesAssetDao.getBitsharesAssetInfoById(balance.getAsset().getObjectId());
|
||||
if (assetInfo == null) {
|
||||
if(assetInfo == null ){
|
||||
ArrayList<String> idAssets = new ArrayList<>();
|
||||
idAssets.add(balance.getAsset().getObjectId());
|
||||
ApiRequest getAssetRequest = new ApiRequest(1, new ApiRequestListener() {
|
||||
@Override
|
||||
public void success(Object answer, int idPetition) {
|
||||
List<BitsharesAsset> assets = (List<BitsharesAsset>) answer;
|
||||
for (BitsharesAsset asset : assets) {
|
||||
for(BitsharesAsset asset : assets) {
|
||||
BitsharesAssetInfo info = new BitsharesAssetInfo(asset);
|
||||
long[] cryptoCurrencyId = cryptoCurrencyDao.insertCryptoCurrency((CryptoCurrency) asset);
|
||||
info.setCryptoCurrencyId(cryptoCurrencyId[0]);
|
||||
|
@ -507,9 +496,9 @@ public abstract class GrapheneApiGenerator {
|
|||
public void fail(int idPetition) {
|
||||
}
|
||||
});
|
||||
getAssetById(idAssets, getAssetRequest);
|
||||
getAssetById(idAssets,getAssetRequest);
|
||||
|
||||
} else {
|
||||
}else {
|
||||
|
||||
ccBalance.setCryptoCurrencyId(assetInfo.getCryptoCurrencyId());
|
||||
balanceDao.insertCryptoCoinBalance(ccBalance);
|
||||
|
@ -521,7 +510,7 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
|
||||
thread.start();
|
||||
|
||||
|
@ -531,15 +520,15 @@ public abstract class GrapheneApiGenerator {
|
|||
* Gets the date time of a block header
|
||||
*
|
||||
* @param blockHeader The block header to retrieve the date time
|
||||
* @param request the api request object, to answer this petition
|
||||
* @param request the api request object, to answer this petition
|
||||
*/
|
||||
public static void getBlockHeaderTime(long blockHeader, final ApiRequest request) {
|
||||
public static void getBlockHeaderTime(long blockHeader, final ApiRequest request){
|
||||
WebSocketThread thread = new WebSocketThread(new GetBlockHeader(blockHeader, new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
if (response == null) {
|
||||
if(response == null){
|
||||
request.getListener().fail(request.getId());
|
||||
} else {
|
||||
}else {
|
||||
request.getListener().success(response.result, request.getId());
|
||||
}
|
||||
}
|
||||
|
@ -548,7 +537,7 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
|
||||
}
|
||||
|
@ -556,21 +545,21 @@ public abstract class GrapheneApiGenerator {
|
|||
/**
|
||||
* Gets a single equivalent value
|
||||
*
|
||||
* @param baseId The base asset bistshares id
|
||||
* @param baseId The base asset bistshares id
|
||||
* @param quoteId the quote asset bitshares id
|
||||
* @param request the api request object, to answer this petition
|
||||
*/
|
||||
public static void getEquivalentValue(final String baseId, String quoteId, final ApiRequest request) {
|
||||
public static void getEquivalentValue(final String baseId, String quoteId, final ApiRequest request){
|
||||
WebSocketThread thread = new WebSocketThread(new GetLimitOrders(baseId, quoteId, 10,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<LimitOrder> orders = (List<LimitOrder>) response.result;
|
||||
if (orders.size() <= 0) {
|
||||
if(orders.size()<= 0){
|
||||
//TODO indirect equivalent value
|
||||
}
|
||||
for (LimitOrder order : orders) {
|
||||
if (order.getSellPrice().base.getAsset().getBitassetId().equals(baseId)) {
|
||||
for(LimitOrder order : orders){
|
||||
if(order.getSellPrice().base.getAsset().getBitassetId().equals(baseId)) {
|
||||
Converter converter = new Converter();
|
||||
double equiValue = converter.getConversionRate(order.getSellPrice(),
|
||||
Converter.BASE_TO_QUOTE);
|
||||
|
@ -584,23 +573,23 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES)); //todo change equivalent url for current server url
|
||||
}), BitsharesConstant.EQUIVALENT_URL); //todo change equivalent url for current server url
|
||||
thread.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets equivalent value and store it on the database
|
||||
*
|
||||
* @param baseAsset The baset asset as a bitshares asset, it needs the CryptoCurrency and thge BitsharesInfo
|
||||
* @param baseAsset The baset asset as a bitshares asset, it needs the CryptoCurrency and thge BitsharesInfo
|
||||
* @param quoteAssets The list of the qutoe assets as a full bitshares asset object
|
||||
* @param context The android context of this application
|
||||
* @param context The android context of this application
|
||||
*/
|
||||
public static void getEquivalentValue(BitsharesAsset baseAsset,
|
||||
final List<BitsharesAsset> quoteAssets, final Context context) {
|
||||
for (BitsharesAsset quoteAsset : quoteAssets) {
|
||||
final List<BitsharesAsset> quoteAssets, final Context context){
|
||||
for(BitsharesAsset quoteAsset : quoteAssets){
|
||||
WebSocketThread thread = new WebSocketThread(new GetLimitOrders(baseAsset.getBitsharesId(),
|
||||
quoteAsset.getBitsharesId(), 10, new EquivalentValueListener(baseAsset,
|
||||
quoteAsset, context)), CryptoNetManager.getURL(CryptoNet.BITSHARES)); //todo change equivalent url for current server url
|
||||
quoteAsset,context)), BitsharesConstant.EQUIVALENT_URL); //todo change equivalent url for current server url
|
||||
thread.start();
|
||||
}
|
||||
}
|
||||
|
@ -609,25 +598,25 @@ public abstract class GrapheneApiGenerator {
|
|||
* Retrieves the equivalent value from a list of assets to a base asset
|
||||
*
|
||||
* @param baseAssetName The base asset to use
|
||||
* @param quoteAssets The list of quotes assets to query
|
||||
* @param context The Context of this Application
|
||||
* @param quoteAssets The list of quotes assets to query
|
||||
* @param context The Context of this Application
|
||||
*/
|
||||
public static void getEquivalentValue(String baseAssetName, final List<BitsharesAsset> quoteAssets, final Context context) {
|
||||
public static void getEquivalentValue(String baseAssetName, final List<BitsharesAsset> quoteAssets, final Context context){
|
||||
CrystalDatabase db = CrystalDatabase.getAppDatabase(context);
|
||||
final CryptoCurrencyDao cryptoCurrencyDao = db.cryptoCurrencyDao();
|
||||
final BitsharesAssetDao bitsharesAssetDao = db.bitsharesAssetDao();
|
||||
CryptoCurrency baseCurrency = cryptoCurrencyDao.getByName(baseAssetName);
|
||||
BitsharesAssetInfo info = null;
|
||||
if (baseCurrency != null) {
|
||||
if(baseCurrency != null){
|
||||
info = db.bitsharesAssetDao().getBitsharesAssetInfo(baseCurrency.getId());
|
||||
}
|
||||
if (baseCurrency == null || info == null) {
|
||||
if(baseCurrency == null || info == null){
|
||||
ApiRequest getAssetRequest = new ApiRequest(1, new ApiRequestListener() {
|
||||
@Override
|
||||
public void success(Object answer, int idPetition) {
|
||||
if (answer instanceof BitsharesAsset) {
|
||||
if(answer instanceof BitsharesAsset){
|
||||
BitsharesAssetInfo info = new BitsharesAssetInfo((BitsharesAsset) answer);
|
||||
long cryptoCurrencyId = cryptoCurrencyDao.insertCryptoCurrency((CryptoCurrency) answer)[0];
|
||||
long cryptoCurrencyId = cryptoCurrencyDao.insertCryptoCurrency((CryptoCurrency)answer )[0];
|
||||
info.setCryptoCurrencyId(cryptoCurrencyId);
|
||||
bitsharesAssetDao.insertBitsharesAssetInfo(info);
|
||||
GrapheneApiGenerator.getEquivalentValue((BitsharesAsset) answer, quoteAssets, context);
|
||||
|
@ -641,12 +630,12 @@ public abstract class GrapheneApiGenerator {
|
|||
});
|
||||
ArrayList<String> names = new ArrayList<>();
|
||||
names.add(baseAssetName);
|
||||
GrapheneApiGenerator.getAssetByName(names, getAssetRequest);
|
||||
GrapheneApiGenerator.getAssetByName(names,getAssetRequest);
|
||||
|
||||
} else {
|
||||
}else {
|
||||
BitsharesAsset baseAsset = new BitsharesAsset(baseCurrency);
|
||||
baseAsset.loadInfo(info);
|
||||
getEquivalentValue(baseAsset, quoteAssets, context);
|
||||
getEquivalentValue(baseAsset,quoteAssets,context);
|
||||
}
|
||||
|
||||
|
||||
|
@ -655,7 +644,7 @@ public abstract class GrapheneApiGenerator {
|
|||
/**
|
||||
* Listener of the equivalent value the answer is stored in the database, for use in conjuntion with LiveData
|
||||
*/
|
||||
private static class EquivalentValueListener implements WitnessResponseListener {
|
||||
private static class EquivalentValueListener implements WitnessResponseListener{
|
||||
/**
|
||||
* The base asset
|
||||
*/
|
||||
|
@ -678,10 +667,10 @@ public abstract class GrapheneApiGenerator {
|
|||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<LimitOrder> orders = (List<LimitOrder>) response.result;
|
||||
if (orders.size() <= 0) {
|
||||
if(orders.size()<= 0){
|
||||
//TODO indirect equivalent value
|
||||
}
|
||||
for (LimitOrder order : orders) {
|
||||
for(LimitOrder order : orders){
|
||||
try {
|
||||
//if (order.getSellPrice().base.getAsset().getBitassetId().equals(baseAsset.getBitsharesId())) {
|
||||
Converter converter = new Converter();
|
||||
|
@ -692,7 +681,7 @@ public abstract class GrapheneApiGenerator {
|
|||
CrystalDatabase.getAppDatabase(context).cryptoCurrencyEquivalenceDao().insertCryptoCurrencyEquivalence(equivalence);
|
||||
break;
|
||||
//}
|
||||
} catch (Exception e) {
|
||||
}catch(Exception e){
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
@ -703,4 +692,5 @@ public abstract class GrapheneApiGenerator {
|
|||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -43,6 +43,7 @@ open abstract class DialogMaterial{
|
|||
* Init the builder
|
||||
* */
|
||||
builder = MaterialDialog.Builder(activity)
|
||||
builder.cancelable(false)
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -2,6 +2,7 @@ package cy.agorise.crystalwallet.fragments;
|
|||
|
||||
import android.arch.lifecycle.LiveData;
|
||||
import android.arch.lifecycle.Observer;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.os.Environment;
|
||||
import android.support.annotation.Nullable;
|
||||
|
@ -24,6 +25,8 @@ import butterknife.BindView;
|
|||
import butterknife.ButterKnife;
|
||||
import butterknife.OnClick;
|
||||
import cy.agorise.crystalwallet.R;
|
||||
import cy.agorise.crystalwallet.activities.BackupSeedActivity;
|
||||
import cy.agorise.crystalwallet.activities.IntroActivity;
|
||||
import cy.agorise.crystalwallet.dao.CrystalDatabase;
|
||||
import cy.agorise.crystalwallet.models.GeneralSetting;
|
||||
import cy.agorise.crystalwallet.requestmanagers.CreateBackupRequest;
|
||||
|
@ -47,6 +50,9 @@ public class BackupsSettingsFragment extends Fragment{
|
|||
return fragment;
|
||||
}
|
||||
|
||||
@BindView(R.id.btnBrainkey)
|
||||
public Button btnBrainkey;
|
||||
|
||||
@BindView(R.id.tvBinFile)
|
||||
public TextView tvBinFile;
|
||||
|
||||
|
@ -81,6 +87,15 @@ public class BackupsSettingsFragment extends Fragment{
|
|||
return ssb;
|
||||
}
|
||||
|
||||
|
||||
@OnClick(R.id.btnBrainkey)
|
||||
public void btnBrainOnClick(){
|
||||
|
||||
Intent intent = new Intent(getContext(), BackupSeedActivity.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
|
||||
|
||||
@OnClick(R.id.btnBinFile)
|
||||
public void makeBackupFile(){
|
||||
if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
|
||||
|
|
|
@ -56,7 +56,10 @@ public class SecuritySettingsFragment extends Fragment {
|
|||
return fragment;
|
||||
}
|
||||
|
||||
private NfcAdapter mNfcAdapter;
|
||||
/*
|
||||
* Functionality not needed for now
|
||||
* */
|
||||
//private NfcAdapter mNfcAdapter;
|
||||
private PendingIntent pendingIntent;
|
||||
private IntentFilter ndef;
|
||||
IntentFilter[] intentFiltersArray;
|
||||
|
@ -100,7 +103,11 @@ public class SecuritySettingsFragment extends Fragment {
|
|||
mPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(tabLayout));
|
||||
tabLayout.addOnTabSelectedListener(new TabLayout.ViewPagerOnTabSelectedListener(mPager));
|
||||
|
||||
mNfcAdapter = NfcAdapter.getDefaultAdapter(this.getActivity());
|
||||
/*
|
||||
* Functionality not needed for now
|
||||
* */
|
||||
//mNfcAdapter = NfcAdapter.getDefaultAdapter(this.getActivity());
|
||||
|
||||
this.configureForegroundDispatch();
|
||||
|
||||
return v;
|
||||
|
@ -149,32 +156,37 @@ public class SecuritySettingsFragment extends Fragment {
|
|||
}
|
||||
|
||||
public void configureForegroundDispatch(){
|
||||
if (mNfcAdapter != null) {
|
||||
pendingIntent = PendingIntent.getActivity(
|
||||
this.getActivity(), 0, new Intent(this.getActivity(), getActivity().getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
|
||||
|
||||
ndef = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
|
||||
try {
|
||||
ndef.addDataType("*/*"); /* Handles all MIME based dispatches.
|
||||
You should specify only the ones that you need. */
|
||||
} catch (IntentFilter.MalformedMimeTypeException e) {
|
||||
throw new RuntimeException("fail", e);
|
||||
}
|
||||
intentFiltersArray = new IntentFilter[]{ndef,};
|
||||
techList = new String[][]{ new String[] {IsoDep.class.getName(), NfcA.class.getName(), MifareClassic.class.getName(), NdefFormatable.class.getName()} };
|
||||
/*
|
||||
* Functionality not needed for now
|
||||
* */
|
||||
//if (mNfcAdapter != null) {
|
||||
//pendingIntent = PendingIntent.getActivity(
|
||||
// this.getActivity(), 0, new Intent(this.getActivity(), getActivity().getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
|
||||
|
||||
} else {
|
||||
Toast.makeText(this.getContext(), "This device doesn't support NFC.", Toast.LENGTH_LONG).show();
|
||||
}
|
||||
//ndef = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
|
||||
//try {
|
||||
//ndef.addDataType("*/*");
|
||||
// Handles all MIME based dispatches.
|
||||
//You should specify only the ones that you need.
|
||||
//} catch (IntentFilter.MalformedMimeTypeException e) {
|
||||
//throw new RuntimeException("fail", e);
|
||||
//}
|
||||
//intentFiltersArray = new IntentFilter[]{ndef,};
|
||||
//techList = new String[][]{ new String[] {IsoDep.class.getName(), NfcA.class.getName(), MifareClassic.class.getName(), NdefFormatable.class.getName()} };
|
||||
|
||||
//} else {
|
||||
//Toast.makeText(this.getContext(), "This device doesn't support NFC.", Toast.LENGTH_LONG).show();
|
||||
//}
|
||||
}
|
||||
|
||||
public void enableNfc(){
|
||||
mNfcAdapter.enableForegroundDispatch(this.getActivity(), pendingIntent, intentFiltersArray, techList);
|
||||
//mNfcAdapter.enableForegroundDispatch(this.getActivity(), pendingIntent, intentFiltersArray, techList);
|
||||
Toast.makeText(this.getContext(), "Tap with your yubikey", Toast.LENGTH_LONG).show();
|
||||
}
|
||||
|
||||
public void disableNfc(){
|
||||
mNfcAdapter.disableForegroundDispatch(this.getActivity());
|
||||
//mNfcAdapter.disableForegroundDispatch(this.getActivity());
|
||||
}
|
||||
|
||||
public void onPause() {
|
||||
|
@ -184,9 +196,9 @@ public class SecuritySettingsFragment extends Fragment {
|
|||
|
||||
public void onResume() {
|
||||
super.onResume();
|
||||
if (mNfcAdapter != null) {
|
||||
/*if (mNfcAdapter != null) {
|
||||
enableNfc();
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
public void onNewIntent(Intent intent) {
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
package cy.agorise.crystalwallet.network;
|
||||
|
||||
import cy.agorise.crystalwallet.apigenerator.GrapheneApiGenerator;
|
||||
import cy.agorise.crystalwallet.enums.CryptoNet;
|
||||
import cy.agorise.graphenej.interfaces.WitnessResponseListener;
|
||||
import cy.agorise.graphenej.models.BaseResponse;
|
||||
|
@ -24,21 +23,15 @@ public class BitsharesCryptoNetVerifier extends CryptoNetVerifier {
|
|||
private final String CHAIN_ID = "9cf6f255a208100d2bb275a3c52f4b1589b7ec9c9bfc2cb2a5fe6411295106d8";//testnet
|
||||
//private final String CHAIN_ID = "4018d7844c78f6a6c41c6a552b898022310fc5dec06da467ee7905a8dad512c8";//mainnet
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public BitsharesCryptoNetVerifier(){
|
||||
|
||||
/**/
|
||||
@Override
|
||||
public void checkURL(final String url) {
|
||||
final long startTime = System.currentTimeMillis();
|
||||
thread = new WebSocketThread(new GetChainId(new WitnessResponseListener() {
|
||||
WebSocketThread thread = new WebSocketThread(new GetChainId(new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
if(response.result instanceof String) {
|
||||
if(response.result.equals(CHAIN_ID)) {
|
||||
CryptoNetManager.verifiedCryptoNetURL(cryptoNet, null, System.currentTimeMillis() - startTime);
|
||||
CryptoNetManager.verifiedCryptoNetURL(cryptoNet, url, System.currentTimeMillis() - startTime);
|
||||
}else{
|
||||
System.out.println(" BitsharesCryptoNetVerifier Error we are not in the net current chain id " + response.result + " excepted " + CHAIN_ID);
|
||||
//TODO handle error bad chain
|
||||
|
@ -50,19 +43,12 @@ public class BitsharesCryptoNetVerifier extends CryptoNetVerifier {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
//TODO handle error
|
||||
}
|
||||
}),null);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void checkURL(final String url) {
|
||||
thread.setmUrl(url); //Set the url
|
||||
thread.start(); //Run the thread connection
|
||||
}),url);
|
||||
thread.start();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getChainId() {
|
||||
return CHAIN_ID;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,8 +1,5 @@
|
|||
package cy.agorise.crystalwallet.network;
|
||||
|
||||
import android.app.Activity;
|
||||
|
||||
import cy.agorise.crystalwallet.apigenerator.GrapheneApiGenerator;
|
||||
import cy.agorise.crystalwallet.enums.CryptoNet;
|
||||
|
||||
/**
|
||||
|
@ -15,14 +12,6 @@ import cy.agorise.crystalwallet.enums.CryptoNet;
|
|||
|
||||
public abstract class CryptoNetVerifier {
|
||||
|
||||
/*
|
||||
* Contains the worker connection thread
|
||||
*/
|
||||
protected WebSocketThread thread;
|
||||
|
||||
|
||||
|
||||
|
||||
static CryptoNetVerifier getNetworkVerify(CryptoNet cryptoNet){
|
||||
if(cryptoNet.getLabel().equals(CryptoNet.BITSHARES.getLabel())){
|
||||
return new BitsharesCryptoNetVerifier();
|
||||
|
@ -33,9 +22,4 @@ public abstract class CryptoNetVerifier {
|
|||
public abstract void checkURL(final String url);
|
||||
|
||||
public abstract String getChainId();
|
||||
|
||||
|
||||
public WebSocketThread getThread() {
|
||||
return thread;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -3,6 +3,7 @@ package cy.agorise.crystalwallet.network;
|
|||
import android.util.Log;
|
||||
|
||||
import com.neovisionaries.ws.client.WebSocket;
|
||||
import com.neovisionaries.ws.client.WebSocketException;
|
||||
import com.neovisionaries.ws.client.WebSocketFactory;
|
||||
import com.neovisionaries.ws.client.WebSocketListener;
|
||||
|
||||
|
@ -33,11 +34,6 @@ public class WebSocketThread extends Thread {
|
|||
private boolean canChange = true;
|
||||
|
||||
|
||||
/*
|
||||
* Object needed for socket connection
|
||||
* */
|
||||
private WebSocketFactory factory;
|
||||
|
||||
/**
|
||||
* Basic constructor,
|
||||
*
|
||||
|
@ -47,27 +43,16 @@ public class WebSocketThread extends Thread {
|
|||
* @param url The url to connect
|
||||
*/
|
||||
public WebSocketThread(WebSocketListener webSocketListener, String url) {
|
||||
|
||||
/*
|
||||
* The listener always can be setted
|
||||
* */
|
||||
this.mWebSocketListener = webSocketListener;
|
||||
|
||||
/*
|
||||
*
|
||||
* If at this point the url is not defined, this will be set after
|
||||
* */
|
||||
if(url!=null){
|
||||
try {
|
||||
factory = new WebSocketFactory().setConnectionTimeout(5000);
|
||||
this.mUrl = url;
|
||||
this.mWebSocket = factory.createSocket(this.mUrl);
|
||||
this.mWebSocket.addListener(this.mWebSocketListener);
|
||||
} catch (IOException e) {
|
||||
Log.e(TAG, "IOException. Msg: "+e.getMessage());
|
||||
} catch(NullPointerException e){
|
||||
Log.e(TAG, "NullPointerException at WebsocketWorkerThreas. Msg: "+e.getMessage());
|
||||
}
|
||||
try {
|
||||
WebSocketFactory factory = new WebSocketFactory().setConnectionTimeout(5000);
|
||||
this.mUrl = url;
|
||||
this.mWebSocketListener = webSocketListener;
|
||||
this.mWebSocket = factory.createSocket(this.mUrl);
|
||||
this.mWebSocket.addListener(this.mWebSocketListener);
|
||||
} catch (IOException e) {
|
||||
Log.e(TAG, "IOException. Msg: "+e.getMessage());
|
||||
} catch(NullPointerException e){
|
||||
Log.e(TAG, "NullPointerException at WebsocketWorkerThreas. Msg: "+e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -125,28 +110,16 @@ public class WebSocketThread extends Thread {
|
|||
|
||||
@Override
|
||||
public void run() {
|
||||
|
||||
canChange = false;
|
||||
|
||||
// Moves the current Thread into the background
|
||||
android.os.Process.setThreadPriority(android.os.Process.THREAD_PRIORITY_BACKGROUND);
|
||||
|
||||
try {
|
||||
|
||||
/*
|
||||
* If the initialization of the socket comes after
|
||||
* */
|
||||
if(factory==null){
|
||||
factory = new WebSocketFactory().setConnectionTimeout(5000);
|
||||
this.mWebSocket = factory.createSocket(this.mUrl);
|
||||
this.mWebSocket.addListener(this.mWebSocketListener);
|
||||
}
|
||||
|
||||
WebSocketThread.currentThreads.put(this.getId(),this);
|
||||
mWebSocket.connect();
|
||||
|
||||
} catch (final Exception e) {
|
||||
} catch (WebSocketException e) {
|
||||
Log.e(TAG, "WebSocketException. Msg: "+e.getMessage());
|
||||
} catch(NullPointerException e){
|
||||
Log.e(TAG, "NullPointerException. Msg: "+e.getMessage());
|
||||
}
|
||||
WebSocketThread.currentThreads.remove(this.getId());
|
||||
}
|
||||
|
@ -154,9 +127,4 @@ public class WebSocketThread extends Thread {
|
|||
public boolean isConnected(){
|
||||
return mWebSocket.isOpen();
|
||||
}
|
||||
|
||||
|
||||
public void setmUrl(String mUrl) {
|
||||
this.mUrl = mUrl;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -69,6 +69,7 @@ class BitsharesAccountNameValidation : CustomValidationField, UIValidator {
|
|||
* Remove error
|
||||
* */
|
||||
accountNameField.error = null
|
||||
accountNameField.fieldValidatorModel.setValid()
|
||||
|
||||
/*
|
||||
Validate at least min length
|
||||
|
@ -87,6 +88,7 @@ class BitsharesAccountNameValidation : CustomValidationField, UIValidator {
|
|||
* Remove error
|
||||
* */
|
||||
accountNameField.error = null
|
||||
accountNameField.fieldValidatorModel.setValid()
|
||||
|
||||
/*
|
||||
Validate at least one character
|
||||
|
@ -105,6 +107,7 @@ class BitsharesAccountNameValidation : CustomValidationField, UIValidator {
|
|||
* Remove error
|
||||
* */
|
||||
accountNameField.error = null
|
||||
accountNameField.fieldValidatorModel.setValid()
|
||||
|
||||
/*
|
||||
Validate at least one number for the account string
|
||||
|
@ -117,12 +120,14 @@ class BitsharesAccountNameValidation : CustomValidationField, UIValidator {
|
|||
result = false
|
||||
accountNameField.fieldValidatorModel.setInvalid()
|
||||
accountNameField.fieldValidatorModel.message = this.accountNameField.resources.getString(R.string.create_account_window_err_at_least_one_number)
|
||||
|
||||
} else {
|
||||
|
||||
/*
|
||||
* Remove error
|
||||
* */
|
||||
accountNameField.error = null
|
||||
accountNameField.fieldValidatorModel.setValid()
|
||||
|
||||
|
||||
/*
|
||||
|
@ -136,12 +141,14 @@ class BitsharesAccountNameValidation : CustomValidationField, UIValidator {
|
|||
result = false
|
||||
accountNameField.fieldValidatorModel.setInvalid()
|
||||
accountNameField.fieldValidatorModel.message = this.accountNameField.resources.getString(R.string.create_account_window_err_at_least_one_script)
|
||||
|
||||
} else {
|
||||
|
||||
/*
|
||||
* Remove error
|
||||
* */
|
||||
accountNameField.error = null
|
||||
accountNameField.fieldValidatorModel.setValid()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -162,46 +169,11 @@ class BitsharesAccountNameValidation : CustomValidationField, UIValidator {
|
|||
} else {
|
||||
|
||||
/*
|
||||
* Show the dialog for connection with the server
|
||||
* Deliver result
|
||||
* */
|
||||
val creatingAccountMaterialDialog = CrystalDialog(activity)
|
||||
creatingAccountMaterialDialog.setText(activity.resources.getString(R.string.window_create_seed_Server_validation))
|
||||
creatingAccountMaterialDialog.build()
|
||||
creatingAccountMaterialDialog.show()
|
||||
|
||||
val request = ValidateExistBitsharesAccountRequest(newValue)
|
||||
request.setListener {
|
||||
|
||||
/*
|
||||
* Dismiss the dialog of loading
|
||||
* */
|
||||
creatingAccountMaterialDialog.dismiss()
|
||||
|
||||
if (request.accountExists) {
|
||||
|
||||
/*
|
||||
* The account exists and is not valid
|
||||
* */
|
||||
accountNameField.fieldValidatorModel.setInvalid()
|
||||
accountNameField.fieldValidatorModel.message = accountNameField.resources.getString(R.string.account_name_already_exist)
|
||||
|
||||
} else {
|
||||
|
||||
/*
|
||||
* Passed all validations
|
||||
* */
|
||||
accountNameField.fieldValidatorModel.setValid()
|
||||
|
||||
/*
|
||||
* Deliver the response
|
||||
* */
|
||||
if (uiValidatorListener != null) {
|
||||
uiValidatorListener.onValidationSucceeded(globalCustomValidationField)
|
||||
}
|
||||
}
|
||||
if (uiValidatorListener != null) {
|
||||
uiValidatorListener.onValidationSucceeded(this)
|
||||
}
|
||||
CryptoNetInfoRequests.getInstance().addRequest(request)
|
||||
|
||||
}
|
||||
/*
|
||||
* Passed initial validations, next final validations
|
||||
|
|
|
@ -0,0 +1,165 @@
|
|||
package cy.agorise.crystalwallet.views.natives.spinners
|
||||
|
||||
import android.R
|
||||
import android.content.Context
|
||||
import android.util.AttributeSet
|
||||
import android.view.View
|
||||
import cy.agorise.crystalwallet.models.CryptoNetAccount
|
||||
import cy.agorise.crystalwallet.requestmanagers.CryptoNetInfoRequests
|
||||
import cy.agorise.crystalwallet.requestmanagers.ValidateExistBitsharesAccountRequest
|
||||
import cy.agorise.crystalwallet.viewmodels.validators.validationfields.ValidationField
|
||||
import cy.agorise.crystalwallet.views.CryptoNetAccountAdapter
|
||||
|
||||
class CryptoNetAccountsSpinner : InternalMaterialSpinner {
|
||||
|
||||
/*
|
||||
* Contains the list of accounts
|
||||
* */
|
||||
private var cryptoNetAccounts: MutableList<CryptoNetAccount>? = null
|
||||
|
||||
/*
|
||||
* Contains the current adapter
|
||||
* */
|
||||
private var fromSpinnerAdapter:CryptoNetAccountAdapter? = null
|
||||
|
||||
/*
|
||||
* Listeners
|
||||
* */
|
||||
private var onValidationField:OnValidationFailed? = null
|
||||
private var onValidationSucceeded:OnValidationSucceeded? = null
|
||||
private var onAccountNotExists:OnAccountNotExists? = null
|
||||
private var onItemSelectedListener:OnItemSelectedListener? = null
|
||||
private var onAccountExists:OnAccountExists? = null
|
||||
|
||||
/*
|
||||
* Current selected account
|
||||
* */
|
||||
private var cryptoNetAccount:CryptoNetAccount? = null
|
||||
|
||||
|
||||
|
||||
|
||||
constructor(context: Context?, attrs: AttributeSet?) : super(context,attrs){
|
||||
|
||||
/*
|
||||
* Initialy starts with the android layout
|
||||
* */
|
||||
setAndroidLayout()
|
||||
|
||||
/*
|
||||
* When the user changes the item selection save the model
|
||||
* */
|
||||
setOnItemSelectedListener(OnItemSelectedListener<CryptoNetAccount> { view, position, id, item ->
|
||||
|
||||
/*
|
||||
* Save the current model
|
||||
* */
|
||||
cryptoNetAccount = cryptoNetAccounts?.get(position)
|
||||
|
||||
/*
|
||||
* Deliver response
|
||||
* */
|
||||
if(onItemSelectedListener != null){
|
||||
onItemSelectedListener?.onItemSelectedListener(cryptoNetAccount!!)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
/*
|
||||
* Return the current selected cryptonetaccount
|
||||
* */
|
||||
fun getCryptoNetAccountSelected() : CryptoNetAccount{
|
||||
return this.cryptoNetAccount!!
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Set the current layoutview
|
||||
* */
|
||||
fun setLayout(layout:Int){
|
||||
this.layout = layout
|
||||
}
|
||||
|
||||
/*
|
||||
* Init the spinner, before call this method, this list of items should be set
|
||||
* */
|
||||
fun initCryptoNetAccountAdapter(){
|
||||
|
||||
fromSpinnerAdapter = CryptoNetAccountAdapter(context, this.layout!!, cryptoNetAccounts)
|
||||
setAdapter(fromSpinnerAdapter!!)
|
||||
}
|
||||
|
||||
|
||||
fun setCryptoAccountItems(cryptoNetAccounts:MutableList<CryptoNetAccount>){
|
||||
this.cryptoNetAccounts = cryptoNetAccounts
|
||||
}
|
||||
|
||||
/*
|
||||
* Validate if the "selected" account exists
|
||||
* */
|
||||
fun validateExistBitsharesAccountRequest(){
|
||||
|
||||
if(cryptoNetAccount != null){
|
||||
|
||||
val request = ValidateExistBitsharesAccountRequest(cryptoNetAccount?.name)
|
||||
request.setListener {
|
||||
if (!request.accountExists) {
|
||||
if(onAccountNotExists != null){
|
||||
onAccountNotExists?.onAccountNotExists(this_!!)
|
||||
}
|
||||
|
||||
}
|
||||
else {
|
||||
if(onAccountExists != null){
|
||||
onAccountExists?.onAccountExists(this_!!)
|
||||
}
|
||||
}
|
||||
}
|
||||
CryptoNetInfoRequests.getInstance().addRequest(request)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Listener for validations
|
||||
* */
|
||||
fun onValidationFailed(onValidationField:OnValidationFailed){
|
||||
this.onValidationField = onValidationField
|
||||
}
|
||||
fun onValidationSucceeded(onValidationSucceeded: OnValidationSucceeded){
|
||||
this.onValidationSucceeded = onValidationSucceeded
|
||||
}
|
||||
fun onAccountNotExists(onAccountNotExists: OnAccountNotExists){
|
||||
this.onAccountNotExists = onAccountNotExists
|
||||
}
|
||||
fun onItemSelectedListener(onItemSelectedListener: OnItemSelectedListener){
|
||||
this.onItemSelectedListener = onItemSelectedListener
|
||||
}
|
||||
fun onAccountExists(onAccountExists: OnAccountExists){
|
||||
this.onAccountExists = onAccountExists
|
||||
}
|
||||
/*
|
||||
* End of Listener for validations
|
||||
* */
|
||||
|
||||
/*
|
||||
* Add the items list to the spinner
|
||||
* */
|
||||
fun getCryptoAccountsList() : List<CryptoNetAccount>{
|
||||
return this.cryptoNetAccounts!!
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Interface for validation failed
|
||||
* */
|
||||
interface OnAccountNotExists{
|
||||
fun onAccountNotExists(field: View)
|
||||
}
|
||||
interface OnAccountExists{
|
||||
fun onAccountExists(field: View)
|
||||
}
|
||||
interface OnItemSelectedListener{
|
||||
fun onItemSelectedListener(cryptoNetAccount: CryptoNetAccount)
|
||||
}
|
||||
}
|
|
@ -0,0 +1,80 @@
|
|||
package cy.agorise.crystalwallet.views.natives.spinners
|
||||
|
||||
import android.app.Activity
|
||||
import android.content.Context
|
||||
import android.util.AttributeSet
|
||||
import android.view.View
|
||||
import com.jaredrummler.materialspinner.MaterialSpinner
|
||||
import cy.agorise.crystalwallet.viewmodels.validators.UIValidatorListener
|
||||
import cy.agorise.crystalwallet.viewmodels.validators.validationfields.ValidationField
|
||||
|
||||
open class InternalMaterialSpinner : MaterialSpinner {
|
||||
|
||||
/*
|
||||
* Contains the current layout for the rows
|
||||
* */
|
||||
protected var layout:Int? = null
|
||||
|
||||
/*
|
||||
* Listeners
|
||||
* */
|
||||
private var onItemNotSelected: OnItemNotSelected? = null
|
||||
|
||||
/*
|
||||
* Contains the this for interfaces
|
||||
* */
|
||||
protected var this_: View? = null
|
||||
|
||||
|
||||
|
||||
|
||||
constructor(context: Context?, attrs: AttributeSet?) : super(context,attrs){
|
||||
|
||||
/*
|
||||
* Save the current this
|
||||
* */
|
||||
this_ = this
|
||||
}
|
||||
|
||||
/*
|
||||
* Select the first item in the spinner
|
||||
* */
|
||||
fun selectFirstItem(){
|
||||
this.selectedIndex = 0
|
||||
}
|
||||
|
||||
/*
|
||||
* Set the default android layout
|
||||
* */
|
||||
fun setAndroidLayout(){
|
||||
this.layout = android.R.layout.simple_spinner_item
|
||||
}
|
||||
|
||||
fun onItemNotSelected(onItemNotSelected:OnItemNotSelected){
|
||||
this.onItemNotSelected = onItemNotSelected
|
||||
}
|
||||
|
||||
/*
|
||||
* Validation with listener for item selected or not
|
||||
* */
|
||||
fun validateOnItemNotSelected(){
|
||||
if(this.selectedIndex == -1){
|
||||
if(onItemNotSelected != null){
|
||||
onItemNotSelected?.onItemNotSelected()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Interface for validation failed
|
||||
* */
|
||||
interface OnValidationFailed{
|
||||
fun onValidationFailed(field: ValidationField)
|
||||
}
|
||||
interface OnValidationSucceeded{
|
||||
fun onValidationSucceeded(field: ValidationField)
|
||||
}
|
||||
interface OnItemNotSelected{
|
||||
fun onItemNotSelected()
|
||||
}
|
||||
}
|
2
app/src/main/res/anim/cycle_7.xml
Normal file
2
app/src/main/res/anim/cycle_7.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android" android:cycles="7" />
|
4
app/src/main/res/anim/shake.xml
Normal file
4
app/src/main/res/anim/shake.xml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:fromXDelta="0" android:toXDelta="10" android:duration="1000"
|
||||
android:interpolator="@anim/cycle_7" />
|
12
app/src/main/res/drawable/square.xml
Normal file
12
app/src/main/res/drawable/square.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners
|
||||
android:radius="4dp"
|
||||
android:topRightRadius="4dp"
|
||||
android:bottomRightRadius="4dp"
|
||||
android:bottomLeftRadius="4dp" />
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#0099ff" />
|
||||
</shape>
|
|
@ -3,88 +3,85 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
android:background="@color/white"
|
||||
android:paddingBottom="0dp"
|
||||
android:paddingLeft="0dp"
|
||||
android:paddingRight="0dp"
|
||||
android:paddingLeft="25dp"
|
||||
android:paddingRight="25dp"
|
||||
android:paddingTop="@dimen/activity_vertical_margin">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true">
|
||||
android:background="@color/white"
|
||||
android:padding="20dp"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_centerVertical="true">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvMnemonicTitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_marginBottom="20dp"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_alignStart="@+id/linearlayout1"
|
||||
android:layout_marginTop="35dp"
|
||||
android:text="@string/window_seed_backup"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:textSize="20dp"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="25dp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvBrainKey"
|
||||
android:layout_width="wrap_content"
|
||||
<LinearLayout
|
||||
android:id="@+id/linearlayout1"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/tvMnemonicTitle"
|
||||
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
||||
android:gravity="center"
|
||||
android:background="@drawable/edittext_bg"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:textColor="@color/black"
|
||||
android:layout_marginBottom="20dp"/>
|
||||
android:layout_marginTop="35dp"
|
||||
android:background="@drawable/square"
|
||||
android:padding="10dp">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/backup_seeed_imageview_warning"
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="20dp"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_marginLeft="35dp"
|
||||
android:layout_alignTop="@+id/backup_seed_textview_leyend_backup"
|
||||
android:background="@drawable/warning" />
|
||||
<TextView
|
||||
android:id="@+id/tvBrainKey"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
||||
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
||||
android:gravity="center"
|
||||
android:background="#00000000"
|
||||
android:textColor="@color/gray" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/backup_seed_textview_leyend_backup"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/linearlayout1"
|
||||
android:layout_marginTop="35dp"
|
||||
android:text="@string/window_seed_leyend_backup"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="14dp" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/btnCancel"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="70dp"
|
||||
android:textColor="@color/send_strong_orange"
|
||||
android:layout_marginRight="70dp"
|
||||
android:text="@string/window_seed_leyend_backup"
|
||||
android:textSize="14dp"
|
||||
android:layout_below="@+id/tvBrainKey"/>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="40dp"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_below="@+id/backup_seed_textview_leyend_backup"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:weightSum="2">
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_marginTop="35dp"
|
||||
android:layout_toLeftOf="@+id/btnCopy"
|
||||
android:text="@string/cancel"
|
||||
android:textColor="#0099ff"
|
||||
android:background="?android:attr/selectableItemBackground"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/btnOk"
|
||||
android:layout_weight="1"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/ok"/>
|
||||
<Button
|
||||
android:id="@+id/btnCopy"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_below="@+id/backup_seed_textview_leyend_backup"
|
||||
android:layout_marginTop="35dp"
|
||||
android:text="@string/window_seed_copy"
|
||||
android:textColor="#0099ff"
|
||||
android:background="?android:attr/selectableItemBackground"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/btnCopy"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_gravity="center"
|
||||
android:text="@string/window_seed_copy"
|
||||
android:textColor="@color/black" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
|
|
|
@ -97,7 +97,7 @@
|
|||
|
||||
</android.support.v7.widget.Toolbar>
|
||||
|
||||
<android.support.design.widget.TabLayout
|
||||
<com.sjaramillo10.animatedtablayout.AnimatedTabLayout
|
||||
android:id="@+id/tabLayout"
|
||||
android:layout_gravity="bottom"
|
||||
android:background="@color/transparent"
|
||||
|
|
|
@ -38,7 +38,6 @@
|
|||
android:layout_marginTop="24dp"
|
||||
android:text="@string/brainkey_description"
|
||||
android:textSize="15sp"
|
||||
android:visibility="invisible"
|
||||
app:layout_constraintEnd_toEndOf="@id/tvBinFile"
|
||||
app:layout_constraintStart_toStartOf="@id/tvBinFile"
|
||||
app:layout_constraintTop_toBottomOf="@id/btnBinFile" />
|
||||
|
@ -53,7 +52,6 @@
|
|||
android:text="@string/view_and_copy"
|
||||
android:textColor="@color/white"
|
||||
android:textStyle="bold"
|
||||
android:visibility="invisible"
|
||||
app:layout_constraintStart_toStartOf="@id/btnBinFile"
|
||||
app:layout_constraintTop_toBottomOf="@id/tvBrainkey" />
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
<ScrollView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
|
@ -13,12 +14,10 @@
|
|||
<View
|
||||
android:id="@+id/topView"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="119dp"
|
||||
android:background="@drawable/send_transaction_top_view"
|
||||
android:layout_height="120dp"
|
||||
android:layout_marginEnd="0dp"
|
||||
android:layout_marginStart="0dp"
|
||||
android:layout_marginTop="0dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.0"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
|
@ -228,16 +227,27 @@
|
|||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="@+id/viewSend" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/btnCancel"
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="600dp"
|
||||
android:layout_marginEnd="24dp"
|
||||
android:text="@string/cancel_capital"
|
||||
android:textStyle="bold"
|
||||
android:textSize="18sp"
|
||||
android:layout_marginTop="20dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent" />
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
android:padding="5dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/btnCancel"
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="26dp"
|
||||
android:background="@drawable/ic_close"
|
||||
android:text=""
|
||||
android:textSize="18sp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</android.support.constraint.ConstraintLayout>
|
||||
|
||||
|
|
Loading…
Reference in a new issue