Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Erkin Çakar committed May 28, 2016
1 parent 9626dff commit 1421323
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

import android.util.Log;

import com.travijuu.numberpicker.library.Interface.LimitExceededListener;

/**
* Created by travijuu on 26/05/16.
*/
public class DefaultLimitExceededListener implements com.travijuu.numberpicker.library.Interface.LimitExceededListener {
public class DefaultLimitExceededListener implements LimitExceededListener {

public void limitExceeded(int limit, int exceededValue) {

Expand Down
4 changes: 2 additions & 2 deletions sample/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
<com.travijuu.numberpicker.library.NumberPicker
android:id="@+id/number_picker_custom"
android:layout_width="130dp"
android:layout_height="40dp"
numberpicker:min="0"
numberpicker:max="10"
numberpicker:value="-5"
numberpicker:unit="1"
numberpicker:custom_layout="@layout/number_picker_custom_layout"
android:layout_height="40dp"/>
numberpicker:custom_layout="@layout/number_picker_custom_layout" />

</LinearLayout>

0 comments on commit 1421323

Please sign in to comment.