Added README.txt and GPL Header to Source Files
[DHBWCampusApp.git] / app / src / main / java / de / dhbwloe / campusapp / fragments / Dashboard.java
index 574a4a786dee0f3d5feeeffa16742ad749113085..85ddee07fe00338a010d43dd3323663f55931d2a 100644 (file)
@@ -1,5 +1,19 @@
+/* Dashboard.java
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
 package de.dhbwloe.campusapp.fragments;
-
 import de.dhbwloe.campusapp.CampusAppFragment;
 
 import android.os.Bundle;
@@ -48,6 +62,8 @@ public class Dashboard extends CampusAppFragment {
         try {
             view = inflater.inflate(R.layout.fragment_dashboard, container, false);
         } catch (InflateException e) {
+            if(view == null)
+                return null;
         }
         AppContext.setTitle(AppContext.getResString(R.string.dashboard_title));
 
@@ -74,6 +90,22 @@ public class Dashboard extends CampusAppFragment {
             }
         });
 
+        image = (ImageView)view.findViewById(R.id.news_dhbw_image);
+        image.setOnClickListener(new View.OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                AppContext.getNavigationManager().navigatePage("News");
+            }
+        });
+
+        image = (ImageView)view.findViewById(R.id.news_stuv_image);
+        image.setOnClickListener(new View.OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                AppContext.getNavigationManager().navigatePage("News");
+            }
+        });
+
         return view;
     }
 }