forked from FuzzyBearBTC/coinomi-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New in version 1.5.14 - Added exchange history log - Can send alt-coins from bitcoin wallet and vise-versa - Make exchange rates appear faster in the UI - Fix rare crash when viewing the exchange status of Peercoin or NuBits
- Loading branch information
1 parent
65c924c
commit f306fe9
Showing
8 changed files
with
238 additions
and
437 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
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
140 changes: 66 additions & 74 deletions
140
wallet/src/main/res/layout/fragment_make_transaction.xml
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 |
---|---|---|
@@ -1,100 +1,92 @@ | ||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:coinomi="http://schemas.android.com/apk/res-auto" | ||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
tools:context="com.coinomi.wallet.ui.MakeTransactionFragment"> | ||
android:fillViewport="true"> | ||
|
||
|
||
<ScrollView | ||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:fillViewport="true"> | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical" | ||
android:paddingBottom="@dimen/activity_vertical_margin" | ||
android:paddingLeft="@dimen/activity_horizontal_margin" | ||
android:paddingRight="@dimen/activity_horizontal_margin" | ||
android:paddingTop="@dimen/activity_vertical_margin"> | ||
|
||
<TextView | ||
android:id="@+id/transaction_info" | ||
style="@style/NormalText" | ||
android:layout_width="wrap_content" | ||
android:layout_height="0dp" | ||
android:layout_weight="0.2" | ||
android:gravity="bottom" | ||
tools:text="@string/tx_confirm_timer_message" /> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_height="0dp" | ||
android:layout_weight="0.8" | ||
android:gravity="center_vertical" | ||
android:orientation="vertical" | ||
android:paddingBottom="@dimen/activity_vertical_margin" | ||
android:paddingLeft="@dimen/activity_horizontal_margin" | ||
android:paddingRight="@dimen/activity_horizontal_margin" | ||
android:paddingTop="@dimen/activity_vertical_margin"> | ||
|
||
<TextView | ||
android:id="@+id/transaction_info" | ||
android:layout_width="wrap_content" | ||
android:layout_height="0dp" | ||
android:layout_weight="0.2" | ||
android:gravity="bottom" | ||
tools:text="@string/tx_confirm_timer_message" | ||
style="@style/NormalText" /> | ||
<com.coinomi.wallet.ui.widget.TransactionAmountVisualizer | ||
android:id="@+id/transaction_amount_visualizer" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="@dimen/standard_margin" | ||
android:gravity="center_vertical" /> | ||
|
||
<LinearLayout | ||
<com.coinomi.wallet.ui.widget.SendOutput | ||
android:id="@+id/transaction_trade_withdraw" | ||
android:layout_width="match_parent" | ||
android:layout_height="0dp" | ||
android:layout_weight="0.8" | ||
android:paddingTop="@dimen/activity_vertical_margin" | ||
android:paddingBottom="@dimen/activity_vertical_margin" | ||
android:gravity="center_vertical" | ||
android:orientation="vertical"> | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center_vertical" | ||
android:layout_marginTop="@dimen/standard_margin" /> | ||
|
||
<com.coinomi.wallet.ui.widget.TransactionAmountVisualizer | ||
android:id="@+id/transaction_amount_visualizer" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="@dimen/standard_margin" | ||
android:gravity="center_vertical" /> | ||
</LinearLayout> | ||
|
||
<com.coinomi.wallet.ui.widget.SendOutput | ||
android:id="@+id/transaction_trade_withdraw" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="@dimen/standard_margin" | ||
android:layout_gravity="center_vertical" /> | ||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical"> | ||
|
||
</LinearLayout> | ||
<TextView | ||
android:id="@+id/enter_password_label" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@string/enter_password" | ||
android:textAppearance="?android:attr/textAppearanceMedium" /> | ||
|
||
<LinearLayout | ||
<EditText | ||
android:id="@+id/password" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical"> | ||
android:ems="10" | ||
android:inputType="textPassword" /> | ||
|
||
<TextView | ||
android:id="@+id/enter_password_label" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@string/enter_password" | ||
android:textAppearance="?android:attr/textAppearanceMedium" /> | ||
<RelativeLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:gravity="bottom"> | ||
|
||
<EditText | ||
android:id="@+id/password" | ||
android:layout_width="match_parent" | ||
<Button | ||
android:id="@+id/button_confirm" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:ems="10" | ||
android:inputType="textPassword" /> | ||
android:layout_alignParentEnd="true" | ||
android:layout_alignParentRight="true" | ||
android:text="@string/button_confirm" /> | ||
|
||
<RelativeLayout | ||
android:layout_width="match_parent" | ||
<include | ||
layout="@layout/powered_by_shapeshift" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:gravity="bottom"> | ||
|
||
<Button | ||
android:id="@+id/button_confirm" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentEnd="true" | ||
android:layout_alignParentRight="true" | ||
android:text="@string/button_confirm" /> | ||
|
||
<include | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentStart="true" | ||
android:layout_alignParentLeft="true" | ||
android:layout_alignBottom="@id/button_confirm" | ||
layout="@layout/powered_by_shapeshift"/> | ||
</RelativeLayout> | ||
</LinearLayout> | ||
android:layout_alignBottom="@id/button_confirm" | ||
android:layout_alignParentLeft="true" | ||
android:layout_alignParentStart="true" /> | ||
</RelativeLayout> | ||
</LinearLayout> | ||
</ScrollView> | ||
</FrameLayout> | ||
</LinearLayout> | ||
</ScrollView> |
Oops, something went wrong.