Fixed small issues and added comments
This commit is contained in:
parent
992de4f313
commit
a64606ccbf
3 changed files with 4 additions and 3 deletions
|
@ -20,7 +20,7 @@
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name=".activities.BoardActivity"
|
<activity android:name=".activities.BoardActivity"
|
||||||
android:theme="@style/AppTheme.NoActionBar" >
|
android:theme="@style/AppTheme.NoActionBar" > <!-- Dirty trick to avoid toolbar error on balance -->
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name=".activities.AccountSeedsManagementActivity" >
|
<activity android:name=".activities.AccountSeedsManagementActivity" >
|
||||||
</activity>
|
</activity>
|
||||||
|
|
|
@ -71,9 +71,10 @@ public class BoardActivity extends AppCompatActivity {
|
||||||
}
|
}
|
||||||
});*/
|
});*/
|
||||||
|
|
||||||
//
|
// Hide Add Contact fab, it won't hide until first page changed...
|
||||||
fabAddContact.hide();
|
fabAddContact.hide();
|
||||||
|
|
||||||
|
// Hide and show respective fabs when convenient
|
||||||
mPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() {
|
mPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
|
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
android:background="?attr/colorPrimary"
|
android:background="?attr/colorPrimary"
|
||||||
app:layout_scrollFlags="scroll|enterAlways"
|
app:layout_scrollFlags="scroll|enterAlways"
|
||||||
app:popupTheme="@style/AppTheme.PopupOverlay"
|
app:popupTheme="@style/AppTheme.PopupOverlay"
|
||||||
app:title="@string/app_name">
|
app:title="Client Logo">
|
||||||
|
|
||||||
</android.support.v7.widget.Toolbar>
|
</android.support.v7.widget.Toolbar>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue