Fixed small issues and added comments

master
sjaramillo10 2017-11-17 00:05:41 -06:00 committed by Severiano Jaramillo
parent 6b947e6df2
commit f8d8f39d35
3 changed files with 4 additions and 3 deletions

View File

@ -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>

View File

@ -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) {

View File

@ -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>