-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HomeAdapter modifications such that Calendar, Dining, and Laundry cel…
…ls can have their own viewholders
- Loading branch information
1 parent
c7bce3b
commit 3647511
Showing
5 changed files
with
46 additions
and
7 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
7 changes: 7 additions & 0 deletions
7
PennMobile/src/main/java/com/pennapps/labs/pennmobile/viewholders/HomeCalendarHolder.kt
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,7 @@ | ||
package com.pennapps.labs.pennmobile.viewholders | ||
|
||
import com.pennapps.labs.pennmobile.databinding.HomeBaseCardBinding | ||
|
||
class HomeCalendarHolder( | ||
itemBinding: HomeBaseCardBinding, | ||
) : HomeBaseHolder(itemBinding) |
7 changes: 7 additions & 0 deletions
7
PennMobile/src/main/java/com/pennapps/labs/pennmobile/viewholders/HomeDiningHolder.kt
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,7 @@ | ||
package com.pennapps.labs.pennmobile.viewholders | ||
|
||
import com.pennapps.labs.pennmobile.databinding.HomeBaseCardBinding | ||
|
||
class HomeDiningHolder( | ||
itemBinding: HomeBaseCardBinding, | ||
) : HomeBaseHolder(itemBinding) |
7 changes: 7 additions & 0 deletions
7
PennMobile/src/main/java/com/pennapps/labs/pennmobile/viewholders/HomeLaundryHolder.kt
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,7 @@ | ||
package com.pennapps.labs.pennmobile.viewholders | ||
|
||
import com.pennapps.labs.pennmobile.databinding.HomeBaseCardBinding | ||
|
||
class HomeLaundryHolder( | ||
itemBinding: HomeBaseCardBinding, | ||
) : HomeBaseHolder(itemBinding) |