-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Option to remember and reuse selected fiat (#967)
- Loading branch information
Showing
7 changed files
with
83 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
app/src/main/java/com/m2049r/xmrwallet/util/StickyFiatHelper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright (c) 2024 m2049r | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.m2049r.xmrwallet.util; | ||
|
||
import android.content.Context; | ||
import android.widget.ArrayAdapter; | ||
import android.widget.Spinner; | ||
|
||
import androidx.preference.PreferenceManager; | ||
|
||
import com.m2049r.xmrwallet.R; | ||
|
||
public class StickyFiatHelper { | ||
|
||
public static String getPreferredFiatSymbol(Context ctx) { | ||
if (PreferenceManager.getDefaultSharedPreferences(ctx) | ||
.getBoolean(ctx.getString(R.string.preferred_stickyfiat), false)) { | ||
return PreferenceManager.getDefaultSharedPreferences(ctx) | ||
.getString(ctx.getString(R.string.preferred_stickyfiat_pref), Helper.BASE_CRYPTO); | ||
} | ||
return null; | ||
} | ||
|
||
public static void setPreferredFiatSymbol(Context ctx, String symbol) { | ||
if (PreferenceManager.getDefaultSharedPreferences(ctx) | ||
.getBoolean(ctx.getString(R.string.preferred_stickyfiat), false)) { | ||
PreferenceManager.getDefaultSharedPreferences(ctx).edit() | ||
.putString(ctx.getString(R.string.preferred_stickyfiat_pref), symbol).apply(); | ||
} | ||
} | ||
|
||
|
||
public static void setPreferredCurrencyPosition(Spinner spinner) { | ||
String stickyFiat = StickyFiatHelper.getPreferredFiatSymbol(spinner.getContext()); | ||
if (stickyFiat != null) { | ||
StickyFiatHelper.setCurrencyPosition(spinner, stickyFiat); | ||
} | ||
} | ||
|
||
public static void setCurrencyPosition(Spinner spinner, String symbol) { | ||
int spinnerPosition = ((ArrayAdapter) spinner.getAdapter()).getPosition(symbol); | ||
if (spinnerPosition < 0) { // requested currency not in list | ||
spinner.setSelection(0, true); | ||
} else { | ||
spinner.setSelection(spinnerPosition, true); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters