Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Reza Amuzadeh committed Mar 10, 2019
2 parents 8799653 + b8c3007 commit 1ee344f
Showing 1 changed file with 19 additions and 14 deletions.
33 changes: 19 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,18 @@
[![](https://jitpack.io/v/HamidrezaAmz/BreadcrumbsView.svg)](https://jitpack.io/#HamidrezaAmz/BreadcrumbsView)
[![API](https://img.shields.io/badge/API-17%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=17)

## New Futures
Custom Font Added

Custom Text Size Added

Custom Text Color ( Selected,UnSelected ) Added

Min API **17**

<img src="./.readme/breadcrumbsview.png" width="30%"/>

Material Design Breadcrumbs Navigation Widget on Android (SDK 19+, Maybe can be lower)
Material Design Breadcrumbs Navigation Widget on Android

<img src="./.readme/screenshot-demo.png" width="50%"/>

Expand All @@ -18,7 +27,6 @@ First, add it in your root build.gradle at the end of repositories:
```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Expand All @@ -28,7 +36,7 @@ Add the dependency to your app modules:

```gradle
dependencies {
compile 'moe.feng:BreadcrumbsView:latest-version'
implementation 'com.github.HamidrezaAmz:BreadcrumbsView:0.2.3'
}
```

Expand All @@ -39,17 +47,14 @@ Place a `BreadcrumbsView` to where you want in your layout xml.
For example:

```xml
<android.support.design.widget.AppBarLayout...>

<android.support.v7.widget.Toolbar.../>

<moe.feng.common.view.breadcrumbs.BreadcrumbsView
android:id="@+id/breadcrumbs_view"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/AppTheme.PopupOverlay"/>

</android.support.design.widget.AppBarLayout>
<moe.feng.common.view.breadcrumbs.BreadcrumbsView
android:id="@+id/breadcrumbs_view"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:textColorSelected="@color/colorSelected"
app:textColorUnSelected="@color/colorUnSelected"
app:textSizeCustom="12sp" />
```

### Add/Remove `BreadcrumbItem`
Expand Down

0 comments on commit 1ee344f

Please sign in to comment.