-
Notifications
You must be signed in to change notification settings - Fork 393
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from javiersantos/scroller
Add scrollbar and remove main FAB
- Loading branch information
Showing
17 changed files
with
48 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
app/src/main/java/com/javiersantos/mlmanager/activities/AboutActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<shape | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<solid android:color="@android:color/darker_gray" /> | ||
|
||
<corners android:radius="10dp" /> | ||
|
||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,44 @@ | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:wheel="http://schemas.android.com/apk/res-auto" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent"> | ||
xmlns:recyclerviewfastscroller="http://schemas.android.com/apk/res-auto" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<include | ||
android:id="@+id/toolbar" | ||
layout="@layout/toolbar" /> | ||
|
||
<LinearLayout | ||
android:orientation="vertical" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
<RelativeLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:id="@+id/main_content" | ||
android:layout_below="@id/toolbar"> | ||
<com.pnikosis.materialishprogress.ProgressWheel | ||
android:id="@+id/progress" | ||
android:layout_width="80dp" | ||
android:layout_height="80dp" | ||
android:layout_marginTop="200dp" | ||
android:layout_gravity="center" | ||
android:layout_centerInParent="true" | ||
android:layout_gravity="center_vertical" | ||
android:visibility="gone" | ||
wheel:matProg_barColor="@color/primary" | ||
wheel:matProg_progressIndeterminate="true" /> | ||
<android.support.v7.widget.RecyclerView | ||
android:id="@+id/appList" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" /> | ||
android:layout_height="match_parent" | ||
android:layout_marginRight="25dp" /> | ||
<xyz.danoz.recyclerviewfastscroller.vertical.VerticalRecyclerViewFastScroller | ||
android:id="@+id/fast_scroller" | ||
android:visibility="gone" | ||
android:layout_width="24dp" | ||
android:layout_height="match_parent" | ||
android:layout_alignParentRight="true" | ||
android:layout_alignParentEnd="true" | ||
android:paddingRight="@dimen/margin_small" | ||
android:paddingEnd="@dimen/margin_small" | ||
|
||
</LinearLayout> | ||
<FrameLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
<include | ||
android:id="@+id/fab" | ||
layout="@layout/fab" /> | ||
</FrameLayout> | ||
recyclerviewfastscroller:rfs_barColor="@color/transparent" | ||
recyclerviewfastscroller:rfs_handleBackground="@drawable/fastscroller_rounded"/> | ||
|
||
</RelativeLayout> | ||
|
||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters