sets correct logo

pull/2/head
Marat Subkhankulov 7 years ago
parent fc08f04d42
commit b218666f6b
  1. 2
      app/src/main/AndroidManifest.xml
  2. BIN
      app/src/main/ic_launcher-web.png
  3. 6
      app/src/main/java/com/example/marat/wal/views/AccountListActivity.java
  4. 6
      app/src/main/java/com/example/marat/wal/views/IntroActivity.java
  5. BIN
      app/src/main/res/mipmap-hdpi/ic_launcher.png
  6. BIN
      app/src/main/res/mipmap-mdpi/ic_launcher.png
  7. BIN
      app/src/main/res/mipmap-xhdpi/ic_launcher.png
  8. BIN
      app/src/main/res/mipmap-xxhdpi/ic_launcher.png
  9. BIN
      app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
  10. 4
      app/src/main/res/values/strings.xml

@ -20,7 +20,7 @@
android:theme="@style/AppTheme">
<activity
android:name=".views.TransactionListActivity"
android:label="@string/title_account"
android:label="@string/title_trust"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 26 KiB

@ -2,6 +2,7 @@ package com.example.marat.wal.views;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.Toolbar;
@ -45,6 +46,11 @@ public class AccountListActivity extends AppCompatActivity implements DeleteAcco
setSupportActionBar(toolbar);
toolbar.setTitle(getTitle());
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setDisplayHomeAsUpEnabled(true);
}
mController = Controller.get();
mRecyclerView = findViewById(R.id.account_list);

@ -18,9 +18,9 @@ public class IntroActivity extends AppIntro {
// Instead of fragments, you can also use our default slide
// Just set a title, description, background and image. AppIntro will do the rest.
addSlide(AppIntroFragment.newInstance("Private & Secure", "Private keys never leave your device.", R.mipmap.onboarding_lock, Color.WHITE));
addSlide(AppIntroFragment.newInstance("Fast", "Fast", R.mipmap.onboarding_rocket, Color.WHITE));
addSlide(AppIntroFragment.newInstance("Open source", "Open source", R.mipmap.onboarding_open_source, Color.WHITE));
addSlide(AppIntroFragment.newInstance("Private & Secure", null, "Private keys never leave your device.", null, R.mipmap.onboarding_lock, Color.WHITE, Color.BLACK, Color.BLACK));
addSlide(AppIntroFragment.newInstance("Fast", null, "Fast", null, R.mipmap.onboarding_rocket, Color.WHITE, Color.BLACK, Color.BLACK));
addSlide(AppIntroFragment.newInstance("Open source", null, "Open source", null, R.mipmap.onboarding_open_source, Color.WHITE, Color.BLACK, Color.BLACK));
// OPTIONAL METHODS
// Override bar/separator color.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

@ -144,6 +144,10 @@
<string name="network_label">Network:</string>
<string name="app_intro">Intro</string>
<!-- TODO: Remove or change this placeholder text -->
<string name="hello_blank_fragment">Hello blank fragment</string>
<string name="title_trust">Trust</string>
<!-- TODO remove -->
<!--<string name="infura_url">https://kovan.infura.io/llyrtzQ3YhkdESt2Fzrk</string>-->
<!-- <string name="default_network">https://infuranet.infura.io/llyrtzQ3YhkdESt2Fzrk</string> -->

Loading…
Cancel
Save