Added README.txt and GPL Header to Source Files
[DHBWCampusApp.git] / app / src / main / java / de / dhbwloe / campusapp / fragments / AppSearch.java
index 3ca9e022f562a8555b4c8772c1ac38b93102812d..e7b8bf1ddceafd0c0796f3bb03a60320e67ebdf7 100644 (file)
@@ -1,6 +1,19 @@
+/* AppSearch.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 android.os.Bundle;
 import android.support.design.widget.TabLayout;
 import android.support.v4.app.Fragment;
@@ -62,7 +75,7 @@ public class AppSearch extends CampusAppFragment {
             AppContext = CampusAppContext.getInstance();
         oFragmentView = inflater.inflate(R.layout.fragment_appsearch, container, false);
 
-        AppContext.setTitle("Search: " + sSearchQuery);
+        AppContext.setTitle(AppContext.getResString(R.string.appsearch_title, sSearchQuery));
 
         ViewPager viewPager = (ViewPager) oFragmentView.findViewById(R.id.viewpager);
         setupViewPager(viewPager);
@@ -84,19 +97,19 @@ public class AppSearch extends CampusAppFragment {
             CampusAppFragment fragment;
             Bundle args = new Bundle();
             args.putString("query", sSearchQuery);
-            Log.i("AppSearch", "New result instances: "+sSearchQuery);
+            Log.i("AppSearch", "New result instances: " + sSearchQuery);
 
             fragment = new AppSearchInternal();
             fragment.setArguments(args);
-            adapter.addFragment("Campus App", fragment);
+            adapter.addFragment(AppContext.getResString(R.string.appsearch_inapp), fragment);
 
             fragment = new AppSearchDhbw();
             fragment.setArguments(args);
-            adapter.addFragment("DHBW Suche", fragment);
+            adapter.addFragment(AppContext.getResString(R.string.appsearch_indhbw), fragment);
 
             fragment = new AppSearchStuv();
             fragment.setArguments(args);
-            adapter.addFragment("Stuv Suche", fragment);
+            adapter.addFragment(AppContext.getResString(R.string.appsearch_instuv), fragment);
         }
 
         viewPager.setAdapter(adapter);