diff --git a/.idea/caches/build_file_checksums.ser b/.idea/caches/build_file_checksums.ser index 68e4a82..7abd311 100644 Binary files a/.idea/caches/build_file_checksums.ser and b/.idea/caches/build_file_checksums.ser differ diff --git a/app/src/main/java/edu/gatech/team83/donationtracker/controller/LocationRecyclerActivity.java b/app/src/main/java/edu/gatech/team83/donationtracker/controller/LocationRecyclerActivity.java index a0495b0..c4731ae 100644 --- a/app/src/main/java/edu/gatech/team83/donationtracker/controller/LocationRecyclerActivity.java +++ b/app/src/main/java/edu/gatech/team83/donationtracker/controller/LocationRecyclerActivity.java @@ -54,7 +54,7 @@ public void onBackPressed(View v) { if (getIntent().hasExtra("Act") && getIntent().getStringExtra("Act").equals("SearchActivity")) { Intent intent = new Intent(context, SearchActivity.class); } - Intent intent = new Intent(context, WelcomeActivity.class); + Intent intent = new Intent(context, AppLandingActivity.class); startActivity(intent); } diff --git a/app/src/main/res/layout/inventory_list.xml b/app/src/main/res/layout/inventory_list.xml index c96209a..b6502cd 100644 --- a/app/src/main/res/layout/inventory_list.xml +++ b/app/src/main/res/layout/inventory_list.xml @@ -12,7 +12,7 @@ android:layout_alignParentBottom="true" android:layout_marginTop="15dp" android:layout_marginBottom="80dp" - app:layoutManager="LinearLayoutManager" + app:layoutManager="android.support.v7.widget.LinearLayoutManager" tools:context="cs2340.gatech.edu.lab3.controllers.CourseListActivity" tools:listitem="@layout/inventory_list_item"> @@ -29,14 +29,15 @@ android:id="@+id/add_item_button" android:onClick="onAddItemPressed"/> - + android:clickable="true" + app:srcCompat="@android:drawable/ic_menu_revert" + android:onClick="onBackItemPressed"/> \ No newline at end of file diff --git a/app/src/main/res/layout/location_detail.xml b/app/src/main/res/layout/location_detail.xml index 11d50e5..83c6d93 100644 --- a/app/src/main/res/layout/location_detail.xml +++ b/app/src/main/res/layout/location_detail.xml @@ -1,5 +1,6 @@ + android:onClick="onEditLocationPressed" + android:text="Edit Location" /> \ No newline at end of file diff --git a/app/src/main/res/layout/location_list.xml b/app/src/main/res/layout/location_list.xml index 6c3d972..6edf69b 100644 --- a/app/src/main/res/layout/location_list.xml +++ b/app/src/main/res/layout/location_list.xml @@ -12,7 +12,7 @@ android:layout_alignParentBottom="true" android:layout_marginTop="15dp" android:layout_marginBottom="80dp" - app:layoutManager="LinearLayoutManager" + app:layoutManager="android.support.v7.widget.LinearLayoutManager" tools:context="cs2340.gatech.edu.lab3.controllers.CourseListActivity" tools:listitem="@layout/location_list_item"> @@ -29,14 +29,16 @@ android:id="@+id/add_location_button" android:onClick="onAddLocationPressed"/> -