property added on size model

This commit is contained in:
2017-09-20 23:51:19 +03:00
parent 658d9cf28c
commit 91722b9e65
2 changed files with 11 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ public class SizeModel {
private String name;
private boolean isChecked;
private String length;
public String getName() {
return name;
@@ -24,4 +25,12 @@ public class SizeModel {
public void setChecked(boolean checked) {
isChecked = checked;
}
public String getLength() {
return length;
}
public void setLength(String length) {
this.length = length;
}
}

View File

@@ -3,4 +3,5 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pizzaRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
android:layout_height="match_parent"
android:scrollbars="vertical"/>