Skip to content

Commit e1c6d03

Browse files
committed
Merge pull request android#37 from quangson91/todo-mvp
Fix tools context in layout XML (todo-mvp)
2 parents 2ab5403 + dab8db3 commit e1c6d03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

todoapp/app/src/main/res/layout/statistics_act.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
android:id="@+id/drawer_layout"
2121
android:layout_width="match_parent"
2222
android:layout_height="match_parent"
23-
tools:context=".TasksActivity"
23+
tools:context=".tasks.TasksActivity"
2424
tools:openDrawer="start">
2525

2626
<LinearLayout

todoapp/app/src/main/res/layout/taskdetail_act.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
android:layout_width="match_parent"
2121
android:layout_height="match_parent"
2222
android:orientation="vertical"
23-
tools:context=".TaskDetailActivity">
23+
tools:context=".taskdetail.TaskDetailActivity">
2424

2525
<android.support.design.widget.AppBarLayout
2626
android:layout_width="match_parent"

todoapp/app/src/main/res/layout/tasks_act.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
android:id="@+id/drawer_layout"
2121
android:layout_width="match_parent"
2222
android:layout_height="match_parent"
23-
tools:context=".TasksActivity"
23+
tools:context=".tasks.TasksActivity"
2424
tools:openDrawer="start">
2525

2626
<LinearLayout

0 commit comments

Comments
 (0)