Add trade history from Binance

This commit is contained in:
Tanguy Herbron 2018-04-09 16:28:42 +02:00
parent d2a296a2ef
commit 0ab73ddc87
9 changed files with 376 additions and 43 deletions

View File

@ -8,9 +8,11 @@ import android.graphics.Paint;
import android.graphics.PorterDuff; import android.graphics.PorterDuff;
import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable; import android.graphics.drawable.Drawable;
import android.os.AsyncTask;
import android.os.Bundle; import android.os.Bundle;
import android.support.annotation.NonNull; import android.support.annotation.NonNull;
import android.support.design.widget.BottomNavigationView; import android.support.design.widget.BottomNavigationView;
import android.support.design.widget.Snackbar;
import android.support.v4.app.NavUtils; import android.support.v4.app.NavUtils;
import android.support.v4.content.ContextCompat; import android.support.v4.content.ContextCompat;
import android.support.v7.app.ActionBar; import android.support.v7.app.ActionBar;
@ -25,6 +27,7 @@ import android.widget.LinearLayout;
import android.widget.TextView; import android.widget.TextView;
import android.widget.ViewFlipper; import android.widget.ViewFlipper;
import com.binance.api.client.domain.account.Trade;
import com.daimajia.swipe.SwipeLayout; import com.daimajia.swipe.SwipeLayout;
import com.github.mikephil.charting.charts.BarChart; import com.github.mikephil.charting.charts.BarChart;
import com.github.mikephil.charting.charts.LineChart; import com.github.mikephil.charting.charts.LineChart;
@ -36,10 +39,12 @@ import com.github.mikephil.charting.data.LineData;
import com.github.mikephil.charting.data.LineDataSet; import com.github.mikephil.charting.data.LineDataSet;
import com.github.mikephil.charting.highlight.Highlight; import com.github.mikephil.charting.highlight.Highlight;
import com.github.mikephil.charting.listener.OnChartValueSelectedListener; import com.github.mikephil.charting.listener.OnChartValueSelectedListener;
import com.nauk.coinfolio.DataManagers.BalanceManager;
import com.nauk.coinfolio.DataManagers.CurrencyData.Currency; import com.nauk.coinfolio.DataManagers.CurrencyData.Currency;
import com.nauk.coinfolio.DataManagers.CurrencyData.CurrencyDataChart; import com.nauk.coinfolio.DataManagers.CurrencyData.CurrencyDataChart;
import com.nauk.coinfolio.DataManagers.CurrencyData.Transaction; import com.nauk.coinfolio.DataManagers.CurrencyData.Transaction;
import com.nauk.coinfolio.DataManagers.DatabaseManager; import com.nauk.coinfolio.DataManagers.DatabaseManager;
import com.nauk.coinfolio.DataManagers.ExchangeManager.BinanceManager;
import com.nauk.coinfolio.DataManagers.PreferencesManager; import com.nauk.coinfolio.DataManagers.PreferencesManager;
import com.nauk.coinfolio.R; import com.nauk.coinfolio.R;
@ -60,6 +65,7 @@ public class CurrencyDetailsActivity extends AppCompatActivity {
private ViewFlipper viewFlipper; private ViewFlipper viewFlipper;
private LinearLayout transactionLayout; private LinearLayout transactionLayout;
private LinearLayout tradeLayout;
private DatabaseManager databaseManager; private DatabaseManager databaseManager;
//private String symbol; //private String symbol;
private Currency currency; private Currency currency;
@ -73,6 +79,7 @@ public class CurrencyDetailsActivity extends AppCompatActivity {
private LineChart lineChart; private LineChart lineChart;
private BarChart barChart; private BarChart barChart;
private PreferencesManager preferencesManager; private PreferencesManager preferencesManager;
private BinanceManager binanceManager;
private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener
= new BottomNavigationView.OnNavigationItemSelectedListener() { = new BottomNavigationView.OnNavigationItemSelectedListener() {
@ -128,8 +135,10 @@ public class CurrencyDetailsActivity extends AppCompatActivity {
viewFlipper = findViewById(R.id.vfCurrencyDetails); viewFlipper = findViewById(R.id.vfCurrencyDetails);
transactionLayout = findViewById(R.id.listTransactions); transactionLayout = findViewById(R.id.listTransactions);
tradeLayout = findViewById(R.id.listTrades);
lineChart = findViewById(R.id.chartPriceView); lineChart = findViewById(R.id.chartPriceView);
barChart = findViewById(R.id.chartVolumeView); barChart = findViewById(R.id.chartVolumeView);
binanceManager = new BinanceManager(preferencesManager.getBinancePublicKey(), preferencesManager.getBinancePrivateKey());
((BottomNavigationView) findViewById(R.id.navigation_details)).getMenu().getItem(1).setEnabled(false); ((BottomNavigationView) findViewById(R.id.navigation_details)).getMenu().getItem(1).setEnabled(false);
@ -145,6 +154,9 @@ public class CurrencyDetailsActivity extends AppCompatActivity {
navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener); navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
hasBeenModified = false; hasBeenModified = false;
TradeUpdater updater = new TradeUpdater();
updater.execute();
} }
private void setupActionBar() private void setupActionBar()
@ -644,6 +656,39 @@ public class CurrencyDetailsActivity extends AppCompatActivity {
return transColor; return transColor;
} }
private void drawTradeList(List<Trade> trades, String pairSymbol)
{
findViewById(R.id.tradeProgressBar).setVisibility(View.GONE);
tradeLayout.removeAllViews();
for(int i = trades.size()-1; i >= 0; i--)
{
View view = LayoutInflater.from(this).inflate(R.layout.custom_trade_row, null);
TextView amountTxtView = view.findViewById(R.id.amountPurchased);
TextView purchasedPrice = view.findViewById(R.id.purchasedPrice);
TextView tradePair = view.findViewById(R.id.pair);
TextView dateTxtView = view.findViewById(R.id.tradeDate);
View tradeIndicator = view.findViewById(R.id.tradeIndicator);
if(trades.get(i).isBuyer())
{
tradeIndicator.setBackgroundColor(getColor(R.color.green));
}
else
{
tradeIndicator.setBackgroundColor(getColor(R.color.red));
}
amountTxtView.setText(String.valueOf(trades.get(i).getQty()));
purchasedPrice.setText(trades.get(i).getPrice());
dateTxtView.setText(getDate(trades.get(i).getTime()));
tradePair.setText(currency.getSymbol() + "/" + pairSymbol);
tradeLayout.addView(view);
}
}
private void drawTransactionList() private void drawTransactionList()
{ {
transactionLayout.removeAllViews(); transactionLayout.removeAllViews();
@ -723,6 +768,53 @@ public class CurrencyDetailsActivity extends AppCompatActivity {
}); });
} }
private class TradeUpdater extends AsyncTask<Void, Integer, Void>
{
@Override
protected void onPreExecute()
{
super.onPreExecute();
findViewById(R.id.tradeProgressBar).setVisibility(View.VISIBLE);
}
@Override
protected void onProgressUpdate(Integer... values)
{
super.onProgressUpdate(values);
}
@Override
protected Void doInBackground(Void... params)
{
binanceManager.updateTrades(new BinanceManager.BinanceCallBack() {
@Override
public void onSuccess() {
final List<Trade> trades = binanceManager.getTrades();
runOnUiThread(new Runnable() {
@Override
public void run() {
drawTradeList(trades, "ETH");
}
});
}
@Override
public void onError(String error) {
}
}, currency.getSymbol());
return null;
}
@Override
protected void onPostExecute(Void result)
{
}
}
} }
/*for(int i = 0; i < dataChartList.size(); i++) /*for(int i = 0; i < dataChartList.size(); i++)
{*/ {*/

View File

@ -13,6 +13,7 @@ import android.widget.EditText;
import android.widget.TextView; import android.widget.TextView;
import android.widget.TimePicker; import android.widget.TimePicker;
import com.nauk.coinfolio.DataManagers.CurrencyData.Currency;
import com.nauk.coinfolio.DataManagers.DatabaseManager; import com.nauk.coinfolio.DataManagers.DatabaseManager;
import com.nauk.coinfolio.DataManagers.PreferencesManager; import com.nauk.coinfolio.DataManagers.PreferencesManager;
import com.nauk.coinfolio.R; import com.nauk.coinfolio.R;
@ -33,6 +34,8 @@ public class RecordTransactionActivity extends AppCompatActivity {
private Calendar calendar; private Calendar calendar;
private SimpleDateFormat sdf; private SimpleDateFormat sdf;
private PreferencesManager preferenceManager; private PreferencesManager preferenceManager;
private EditText purchasedPrice;
private Currency currency;
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
@ -49,13 +52,17 @@ public class RecordTransactionActivity extends AppCompatActivity {
calendar = Calendar.getInstance(); calendar = Calendar.getInstance();
currency = new Currency(coin, symbol);
databaseManager = new DatabaseManager(this); databaseManager = new DatabaseManager(this);
preferenceManager = new PreferencesManager(this); preferenceManager = new PreferencesManager(this);
validateButton = findViewById(R.id.validateButton); validateButton = findViewById(R.id.validateButton);
amountTxtView = findViewById(R.id.currencyAmount); amountTxtView = findViewById(R.id.currencyAmount);
purchasedDate = findViewById(R.id.purchaseDate); purchasedDate = findViewById(R.id.purchaseDate);
purchasedPrice = findViewById(R.id.purchasePrice);
//purchasedPrice.setText();
purchasedDate.setText(sdf.format(calendar.getTime())); purchasedDate.setText(sdf.format(calendar.getTime()));
purchasedDate.setOnClickListener(new View.OnClickListener() { purchasedDate.setOnClickListener(new View.OnClickListener() {
@ -68,7 +75,7 @@ public class RecordTransactionActivity extends AppCompatActivity {
validateButton.setOnClickListener(new View.OnClickListener() { validateButton.setOnClickListener(new View.OnClickListener() {
@Override @Override
public void onClick(View view) { public void onClick(View view) {
databaseManager.addCurrencyToManualCurrency(symbol, Double.parseDouble(amountTxtView.getText().toString()), calendar.getTime()); databaseManager.addCurrencyToManualCurrency(symbol, Double.parseDouble(amountTxtView.getText().toString()), calendar.getTime(), purchasedPrice.getText().toString());
preferenceManager.setMustUpdate(true); preferenceManager.setMustUpdate(true);
Intent intent = new Intent(RecordTransactionActivity.this, HomeActivity.class); Intent intent = new Intent(RecordTransactionActivity.this, HomeActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT); intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
@ -76,6 +83,13 @@ public class RecordTransactionActivity extends AppCompatActivity {
finish(); finish();
} }
}); });
currency.getTimestampPrice(this, new Currency.PriceCallBack() {
@Override
public void onSuccess(String price) {
purchasedPrice.setText(price);
}
}, calendar.getTimeInMillis() / 1000);
} }
private void createDatePicker() private void createDatePicker()
@ -108,6 +122,14 @@ public class RecordTransactionActivity extends AppCompatActivity {
calendar.set(Calendar.HOUR_OF_DAY, hour); calendar.set(Calendar.HOUR_OF_DAY, hour);
calendar.set(Calendar.MINUTE, minute); calendar.set(Calendar.MINUTE, minute);
purchasedDate.setText(sdf.format(calendar.getTime())); purchasedDate.setText(sdf.format(calendar.getTime()));
currency.getTimestampPrice(RecordTransactionActivity.this, new Currency.PriceCallBack() {
@Override
public void onSuccess(String price) {
purchasedPrice.setText(price);
}
}, calendar.getTimeInMillis() / 1000);
Log.d("coinfolio", "Time : " + calendar.getTimeInMillis());
} }
}, },
calendar.get(Calendar.HOUR_OF_DAY), calendar.get(Calendar.HOUR_OF_DAY),

View File

@ -63,6 +63,21 @@ public class Currency implements Parcelable {
this.symbol = symbol; this.symbol = symbol;
} }
public void getTimestampPrice(android.content.Context context, final PriceCallBack callBack, long timestamp)
{
dataRetriver = new CurrencyDataRetriever(context);
dataRetriver.getPriceTimestamp(symbol, new CurrencyDataRetriever.DataChartCallBack() {
@Override
public void onSuccess(List<CurrencyDataChart> dataChart) {}
@Override
public void onSuccess(String price) {
callBack.onSuccess(price);
}
}, timestamp);
}
public void updateHistoryMinutes(android.content.Context context, final CurrencyCallBack callBack) public void updateHistoryMinutes(android.content.Context context, final CurrencyCallBack callBack)
{ {
dataRetriver = new CurrencyDataRetriever(context); dataRetriver = new CurrencyDataRetriever(context);
@ -84,6 +99,9 @@ public class Currency implements Parcelable {
callBack.onSuccess(Currency.this); callBack.onSuccess(Currency.this);
} }
@Override
public void onSuccess(String result){}
}, CurrencyDataRetriever.MINUTES); }, CurrencyDataRetriever.MINUTES);
} }
@ -97,6 +115,9 @@ public class Currency implements Parcelable {
callBack.onSuccess(Currency.this); callBack.onSuccess(Currency.this);
} }
@Override
public void onSuccess(String price) {}
}, CurrencyDataRetriever.HOURS); }, CurrencyDataRetriever.HOURS);
} }
@ -110,6 +131,9 @@ public class Currency implements Parcelable {
callBack.onSuccess(Currency.this); callBack.onSuccess(Currency.this);
} }
@Override
public void onSuccess(String price) {}
}, CurrencyDataRetriever.DAYS); }, CurrencyDataRetriever.DAYS);
} }
@ -237,6 +261,9 @@ public class Currency implements Parcelable {
void onSuccess(Currency currency); void onSuccess(Currency currency);
} }
public interface PriceCallBack {
void onSuccess(String price);
}
@Override @Override
public int describeContents() { public int describeContents() {

View File

@ -1,5 +1,6 @@
package com.nauk.coinfolio.DataManagers.CurrencyData; package com.nauk.coinfolio.DataManagers.CurrencyData;
import android.provider.ContactsContract;
import android.util.Log; import android.util.Log;
import com.android.volley.Request; import com.android.volley.Request;
@ -42,6 +43,36 @@ public class CurrencyDataRetriever {
requestQueue = Volley.newRequestQueue(context); requestQueue = Volley.newRequestQueue(context);
} }
private void getPriceTimestamp(final String symbolCurrencyFrom, String symbolCurrencyTo, final DataChartCallBack callBack, long timestamp)
{
final String requestUrl = "https://min-api.cryptocompare.com/data/pricehistorical?fsym=" + symbolCurrencyFrom + "&tsyms=" + symbolCurrencyTo + "&ts=" + timestamp;
StringRequest stringRequest = new StringRequest(Request.Method.GET, requestUrl,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
Log.d("coinfolio", response + " " + requestUrl);
callBack.onSuccess(processPriceTimestampResult(response));
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
}
});
requestQueue.add(stringRequest);
}
private String processPriceTimestampResult(String result)
{
result = result.substring(result.lastIndexOf(':')+1);
result = result.substring(0, result.indexOf('}'));
return result;
}
private void updateHistory(final String symbolCurrencyFrom, String symbolCyrrencyTo, final DataChartCallBack callBack, int timeUnit) private void updateHistory(final String symbolCurrencyFrom, String symbolCyrrencyTo, final DataChartCallBack callBack, int timeUnit)
{ {
String requestUrl = getRequestUrl(timeUnit, symbolCurrencyFrom, symbolCyrrencyTo); String requestUrl = getRequestUrl(timeUnit, symbolCurrencyFrom, symbolCyrrencyTo);
@ -56,7 +87,7 @@ public class CurrencyDataRetriever {
new Response.ErrorListener() { new Response.ErrorListener() {
@Override @Override
public void onErrorResponse(VolleyError error) { public void onErrorResponse(VolleyError error) {
callBack.onSuccess(null); callBack.onSuccess((List<CurrencyDataChart>) null);
} }
}); });
@ -134,11 +165,16 @@ public class CurrencyDataRetriever {
return new CurrencyDataChart(timestamp, close, high, low, open, volumeFrom, volumeTo); return new CurrencyDataChart(timestamp, close, high, low, open, volumeFrom, volumeTo);
} }
void updateHistory(String symbolCurrencyFrom, final DataChartCallBack callBack, int timeUnit) public void getPriceTimestamp(String symbolCurrencyFrom, final DataChartCallBack callBack, long timestamp)
{
getPriceTimestamp(symbolCurrencyFrom, "USD", callBack, timestamp);
}
public void updateHistory(String symbolCurrencyFrom, final DataChartCallBack callBack, int timeUnit)
{ {
if(symbolCurrencyFrom.equals("USD")) if(symbolCurrencyFrom.equals("USD"))
{ {
callBack.onSuccess(null); callBack.onSuccess((List<CurrencyDataChart>) null);
} }
else else
{ {
@ -148,5 +184,6 @@ public class CurrencyDataRetriever {
public interface DataChartCallBack { public interface DataChartCallBack {
void onSuccess(List<CurrencyDataChart> dataChart); void onSuccess(List<CurrencyDataChart> dataChart);
void onSuccess(String price);
} }
} }

View File

@ -13,12 +13,13 @@ public class Transaction {
private double purchasedPrice; private double purchasedPrice;
private boolean isMined; private boolean isMined;
public Transaction(int transactionId, String symbol, double amount, long timestamp) public Transaction(int transactionId, String symbol, double amount, long timestamp, double purchasedPrice)
{ {
this.transactionId = transactionId; this.transactionId = transactionId;
this.symbol = symbol; this.symbol = symbol;
this.amount = amount; this.amount = amount;
this.timestamp = timestamp; this.timestamp = timestamp;
this.purchasedPrice = purchasedPrice;
} }
public int getTransactionId() { public int getTransactionId() {
@ -49,4 +50,14 @@ public class Transaction {
public void setAmount(double amount) { public void setAmount(double amount) {
this.amount = amount; this.amount = amount;
} }
public void setPurchasedPrice(double purchasedPrice)
{
this.purchasedPrice = purchasedPrice;
}
public double getPurchasedPrice()
{
return purchasedPrice;
}
} }

View File

@ -53,7 +53,7 @@ public class DatabaseManager extends SQLiteOpenHelper{
+ KEY_CURRENCY_NAME + " VARCHAR(45)," + KEY_CURRENCY_NAME + " VARCHAR(45),"
+ KEY_CURRENCY_BALANCE + " TEXT," + KEY_CURRENCY_BALANCE + " TEXT,"
+ KEY_CURRENCY_DATE + " TEXT," + KEY_CURRENCY_DATE + " TEXT,"
+ KEY_CURRENCY_PURCHASED_PRICE + " TEXT," + KEY_CURRENCY_PURCHASED_PRICE + " REAL,"
+ KEY_CURRENCY_IS_MINED + " INTEGER" + KEY_CURRENCY_IS_MINED + " INTEGER"
+ ");"); + ");");
@ -76,7 +76,7 @@ public class DatabaseManager extends SQLiteOpenHelper{
onCreate(db); onCreate(db);
} }
public void addCurrencyToManualCurrency(String symbol, double balance, Date date) public void addCurrencyToManualCurrency(String symbol, double balance, Date date, String purchasedPrice)
{ {
SQLiteDatabase db = this.getWritableDatabase(); SQLiteDatabase db = this.getWritableDatabase();
ContentValues values = new ContentValues(); ContentValues values = new ContentValues();
@ -84,6 +84,7 @@ public class DatabaseManager extends SQLiteOpenHelper{
values.put(KEY_CURRENCY_SYMBOL, symbol); values.put(KEY_CURRENCY_SYMBOL, symbol);
values.put(KEY_CURRENCY_BALANCE, balance); values.put(KEY_CURRENCY_BALANCE, balance);
values.put(KEY_CURRENCY_DATE, date.getTime()); values.put(KEY_CURRENCY_DATE, date.getTime());
values.put(KEY_CURRENCY_PURCHASED_PRICE, purchasedPrice);
//values.put(KEY_CURRENCY_PURCHASED_PRICE, something); //values.put(KEY_CURRENCY_PURCHASED_PRICE, something);
db.insert(TABLE_MANUAL_CURRENCIES, null, values); db.insert(TABLE_MANUAL_CURRENCIES, null, values);
@ -120,7 +121,7 @@ public class DatabaseManager extends SQLiteOpenHelper{
while(resultatList.moveToNext()) while(resultatList.moveToNext())
{ {
transactionList.add(new Transaction(resultatList.getInt(0), resultatList.getString(1), resultatList.getDouble(3), resultatList.getLong(4))); transactionList.add(new Transaction(resultatList.getInt(0), resultatList.getString(1), resultatList.getDouble(3), resultatList.getLong(4), resultatList.getLong(5)));
} }
resultatList.close(); resultatList.close();

View File

@ -1,9 +1,12 @@
package com.nauk.coinfolio.DataManagers.ExchangeManager; package com.nauk.coinfolio.DataManagers.ExchangeManager;
import android.util.Log;
import com.binance.api.client.BinanceApiClientFactory; import com.binance.api.client.BinanceApiClientFactory;
import com.binance.api.client.BinanceApiRestClient; import com.binance.api.client.BinanceApiRestClient;
import com.binance.api.client.domain.account.Account; import com.binance.api.client.domain.account.Account;
import com.binance.api.client.domain.account.AssetBalance; import com.binance.api.client.domain.account.AssetBalance;
import com.binance.api.client.domain.account.Trade;
import com.binance.api.client.exception.BinanceApiException; import com.binance.api.client.exception.BinanceApiException;
import com.nauk.coinfolio.DataManagers.CurrencyData.Currency; import com.nauk.coinfolio.DataManagers.CurrencyData.Currency;
@ -21,6 +24,7 @@ public class BinanceManager {
private String privateKey; private String privateKey;
private List<Currency> balance; private List<Currency> balance;
private List<Trade> trades;
public BinanceManager(String publicKey, String privateKey) public BinanceManager(String publicKey, String privateKey)
{ {
@ -53,9 +57,52 @@ public class BinanceManager {
} }
} }
public void getTrades() public void updateTrades(BinanceCallBack callBack, String symbol)
{ {
List<Trade> totalTrades = new ArrayList<>();
updateTrades(null, symbol, "BTC");
totalTrades.addAll(trades);
updateTrades(null, symbol, "ETH");
totalTrades.addAll(trades);
updateTrades(null, symbol, "USDT");
totalTrades.addAll(trades);
trades = totalTrades;
callBack.onSuccess();
}
public void updateTrades(BinanceCallBack callBack, String symbol, String pairSymbol)
{
BinanceApiClientFactory factory = BinanceApiClientFactory.newInstance(publicKey, privateKey);
BinanceApiRestClient client = factory.newRestClient();
Log.d("coinfolio", symbol + pairSymbol);
trades = new ArrayList<>();
if(!symbol.equals(pairSymbol))
{
try {
trades = client.getMyTrades(symbol + pairSymbol);
} catch (BinanceApiException e) {
try {
trades = client.getMyTrades(pairSymbol + symbol);
} catch (BinanceApiException f) {
f.printStackTrace();
}
}
}
if(callBack != null)
{
callBack.onSuccess();
}
} }
public void setPublicKey(String publicKey) public void setPublicKey(String publicKey)
@ -73,6 +120,11 @@ public class BinanceManager {
return balance; return balance;
} }
public List<Trade> getTrades()
{
return trades;
}
public interface BinanceCallBack { public interface BinanceCallBack {
void onSuccess(); void onSuccess();
void onError(String error); void onError(String error);

View File

@ -329,60 +329,69 @@
android:layout_gravity="center" android:layout_gravity="center"
android:background="@drawable/circular_progress_bar" /> android:background="@drawable/circular_progress_bar" />
<!--<ScrollView </LinearLayout>
android:id="@+id/svInfos"
<LinearLayout
android:id="@+id/transactionsLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:text="Transaction history"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="wrap_content"
android:elevation="@dimen/cardview_elevation"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5">
<LinearLayout <LinearLayout
android:id="@+id/listTransactions"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="vertical"/>
</ScrollView>
<TextView
android:text="Trade history"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="@dimen/cardview_elevation" />
<ScrollView
android:id="@+id/svTransactions"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5">
<LinearLayout
android:id="@+id/listTrades"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"> android:orientation="vertical">
<ProgressBar <ProgressBar
android:id="@+id/progressBar" android:id="@+id/tradeProgressBar"
android:layout_width="wrap_content" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="match_parent"
style="?android:attr/progressBarStyleLarge" android:layout_gravity="center"/>
android:layout_gravity="center"
android:background="@drawable/circular_progress_bar" />
</LinearLayout> </LinearLayout>
</ScrollView>--> </ScrollView>
</LinearLayout> </LinearLayout>
<ScrollView <ScrollView
android:id="@+id/svTransactions"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent">
<LinearLayout
android:id="@+id/listTransactions"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
</ScrollView> </ScrollView>
<!--<ScrollView
android:id="@+id/svTransactions"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/transactionsLinearLayout"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
</ScrollView>-->
</ViewFlipper> </ViewFlipper>
<android.support.design.widget.BottomNavigationView <android.support.design.widget.BottomNavigationView

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/rounded_corners">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal">
<View
android:id="@+id/tradeIndicator"
android:layout_width="5dp"
android:layout_height="match_parent"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/mainLayout">
<LinearLayout
android:padding="5dp"
android:background="#ffffffff"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!--What you want to show in SurfaceView-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:orientation="vertical">
<TextView
android:id="@+id/amountPurchased"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15dp"
android:text="Amount"/>
<TextView
android:id="@+id/purchasedPrice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="10dp"
android:text="Value"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:orientation="vertical"
android:gravity="end">
<TextView
android:id="@+id/pair"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15dp"
android:text="Pair"/>
<TextView
android:id="@+id/tradeDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="10dp"
android:text="Date"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>