-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DetailsActivity] - Fix crash when finishing the activity before all transactions and trades are updated [MarketCapitalizationActivity] - Fix some views not visible for little screens [RecordTransactionActivity] - Fix crash when editing a sell transaction
- Loading branch information
1 parent
ac7fb54
commit 518df66
Showing
11 changed files
with
324 additions
and
251 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
46 changes: 46 additions & 0 deletions
46
app/src/main/res/drawable-v21/spinner_background_header.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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:state_enabled="true"> | ||
<layer-list> | ||
<item> | ||
<shape android:shape="rectangle"> | ||
<solid android:color="@color/hardWhite"/> | ||
|
||
<corners | ||
android:topLeftRadius="5dp" | ||
android:topRightRadius="5dp"/> | ||
<padding | ||
android:left="3dp" | ||
android:right="3dp" | ||
android:top="3dp" | ||
android:bottom="3dp"/> | ||
</shape> | ||
</item> | ||
<item | ||
android:gravity="center_vertical|right" | ||
android:drawable="@drawable/ic_arrow_drop_down_white_24dp"/> | ||
</layer-list> | ||
</item> | ||
|
||
<item android:state_enabled="false"> | ||
<layer-list> | ||
<item> | ||
<shape android:shape="rectangle"> | ||
<solid android:color="@color/softWhite"/> | ||
|
||
<corners | ||
android:topLeftRadius="5dp" | ||
android:topRightRadius="5dp"/> | ||
<padding | ||
android:left="3dp" | ||
android:right="3dp" | ||
android:top="3dp" | ||
android:bottom="3dp"/> | ||
</shape> | ||
</item> | ||
<item | ||
android:gravity="center_vertical|right" | ||
android:drawable="@drawable/ic_arrow_drop_down_white_24dp"/> | ||
</layer-list> | ||
</item> | ||
</selector> |
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
Oops, something went wrong.