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>
</activity>
<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 android:name=".activities.AccountSeedsManagementActivity" >
</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();
// Hide and show respective fabs when convenient
mPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() {
@Override
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {

View File

@ -22,7 +22,7 @@
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:title="@string/app_name">
app:title="Client Logo">
</android.support.v7.widget.Toolbar>