Fixed app theme
This commit is contained in:
parent
f8d8f39d35
commit
5b1a8627f8
4 changed files with 5 additions and 3 deletions
|
@ -11,7 +11,7 @@
|
|||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.AppCompat">
|
||||
android:theme="@style/AppTheme">
|
||||
<activity android:name=".activities.IntroActivity">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
|
|
@ -84,7 +84,7 @@ public class CryptoNetBalanceListView extends RelativeLayout {
|
|||
this.listView.setNestedScrollingEnabled(false);
|
||||
}
|
||||
|
||||
/*
|
||||
/*main_content
|
||||
* Sets the data for the list of balances.
|
||||
*
|
||||
* @param data the list of crypto net balances that will be show to the user
|
||||
|
|
BIN
app/src/main/res/drawable/receive_icon.png
Normal file
BIN
app/src/main/res/drawable/receive_icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
|
@ -5,6 +5,7 @@
|
|||
android:id="@+id/main_content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:theme="@style/AppTheme.NoActionBar"
|
||||
android:fitsSystemWindows="true">
|
||||
|
||||
<android.support.design.widget.AppBarLayout
|
||||
|
@ -65,7 +66,8 @@
|
|||
android:layout_gravity="start|bottom"
|
||||
android:layout_marginBottom="-125dp"
|
||||
android:layout_marginStart="-125dp"
|
||||
app:srcCompat="@android:drawable/ic_dialog_email" />
|
||||
app:backgroundTint="@color/white"
|
||||
app:srcCompat="@drawable/receive_icon" />
|
||||
|
||||
<android.support.design.widget.FloatingActionButton
|
||||
android:id="@+id/fabSend"
|
||||
|
|
Loading…
Reference in a new issue