diff options
author | Glenn Kasten <gkasten@google.com> | 2016-03-18 12:28:06 -0700 |
---|---|---|
committer | Glenn Kasten <gkasten@google.com> | 2016-03-18 12:30:09 -0700 |
commit | ff7c8b9e9d28fa4fb4a5cd43ffc4ffae9b23706e (patch) | |
tree | b3258cc93764e281120719952dea52ffb2107fcc /tests/LocationTracker | |
parent | b2cc929657926750336b22a9333c3738dfa38e29 (diff) |
Fix CRLF
Change-Id: I6740b5fefae2f16d0ce247ff78e7cb5a6f3f8642
Diffstat (limited to 'tests/LocationTracker')
-rw-r--r-- | tests/LocationTracker/src/com/android/locationtracker/SettingsActivity.java | 70 | ||||
-rw-r--r-- | tests/LocationTracker/src/com/android/locationtracker/data/TrackerListHelper.java | 150 |
2 files changed, 110 insertions, 110 deletions
diff --git a/tests/LocationTracker/src/com/android/locationtracker/SettingsActivity.java b/tests/LocationTracker/src/com/android/locationtracker/SettingsActivity.java index cb77118fc0c6..a169b1899e9a 100644 --- a/tests/LocationTracker/src/com/android/locationtracker/SettingsActivity.java +++ b/tests/LocationTracker/src/com/android/locationtracker/SettingsActivity.java @@ -1,35 +1,35 @@ -/*
- * Copyright (C) 2008 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.locationtracker;
-
-import android.os.Bundle;
-import android.preference.PreferenceActivity;
-
-/**
- * Settings preference screen for location tracker
- */
-public class SettingsActivity extends PreferenceActivity {
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
-
- // Load the preferences from an XML resource
- addPreferencesFromResource(R.xml.preferences);
- }
-
-}
+/* + * Copyright (C) 2008 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.locationtracker; + +import android.os.Bundle; +import android.preference.PreferenceActivity; + +/** + * Settings preference screen for location tracker + */ +public class SettingsActivity extends PreferenceActivity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + + // Load the preferences from an XML resource + addPreferencesFromResource(R.xml.preferences); + } + +} diff --git a/tests/LocationTracker/src/com/android/locationtracker/data/TrackerListHelper.java b/tests/LocationTracker/src/com/android/locationtracker/data/TrackerListHelper.java index 55d4d1ef760a..adc39b33d943 100644 --- a/tests/LocationTracker/src/com/android/locationtracker/data/TrackerListHelper.java +++ b/tests/LocationTracker/src/com/android/locationtracker/data/TrackerListHelper.java @@ -1,75 +1,75 @@ -/*
- * Copyright (C) 2008 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-package com.android.locationtracker.data;
-
-import android.app.ListActivity;
-import android.content.Context;
-import android.database.Cursor;
-import android.view.View;
-import android.widget.ResourceCursorAdapter;
-import android.widget.TextView;
-
-import com.android.locationtracker.R;
-
-/**
- * Used to bind Tracker data to a list view UI
- */
-public class TrackerListHelper extends TrackerDataHelper {
-
- private ListActivity mActivity;
-
- // sort entries by most recent first
- private static final String SORT_ORDER = TrackerEntry.ID_COL + " DESC";
-
- public TrackerListHelper(ListActivity activity) {
- super(activity, TrackerDataHelper.CSV_FORMATTER);
- mActivity = activity;
- }
-
- /**
- * Helper method for binding the list activities UI to the tracker data
- * Tracker data will be sorted in most-recent first order
- * Will enable automatic UI changes as tracker data changes
- *
- * @param layout - layout to populate data
- */
- public void bindListUI(int layout) {
- Cursor cursor = mActivity.managedQuery(TrackerProvider.CONTENT_URI,
- TrackerEntry.ATTRIBUTES, null, null, SORT_ORDER);
- // Used to map tracker entries from the database to views
- TrackerAdapter adapter = new TrackerAdapter(mActivity, layout, cursor);
- mActivity.setListAdapter(adapter);
- cursor.setNotificationUri(mActivity.getContentResolver(),
- TrackerProvider.CONTENT_URI);
-
- }
-
- private class TrackerAdapter extends ResourceCursorAdapter {
-
- public TrackerAdapter(Context context, int layout, Cursor c) {
- super(context, layout, c);
- }
-
- @Override
- public void bindView(View view, Context context, Cursor cursor) {
- final TextView v = (TextView) view
- .findViewById(R.id.entrylist_item);
- String rowText = mFormatter.getOutput(TrackerEntry
- .createEntry(cursor));
- v.setText(rowText);
- }
- }
-}
+/* + * Copyright (C) 2008 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package com.android.locationtracker.data; + +import android.app.ListActivity; +import android.content.Context; +import android.database.Cursor; +import android.view.View; +import android.widget.ResourceCursorAdapter; +import android.widget.TextView; + +import com.android.locationtracker.R; + +/** + * Used to bind Tracker data to a list view UI + */ +public class TrackerListHelper extends TrackerDataHelper { + + private ListActivity mActivity; + + // sort entries by most recent first + private static final String SORT_ORDER = TrackerEntry.ID_COL + " DESC"; + + public TrackerListHelper(ListActivity activity) { + super(activity, TrackerDataHelper.CSV_FORMATTER); + mActivity = activity; + } + + /** + * Helper method for binding the list activities UI to the tracker data + * Tracker data will be sorted in most-recent first order + * Will enable automatic UI changes as tracker data changes + * + * @param layout - layout to populate data + */ + public void bindListUI(int layout) { + Cursor cursor = mActivity.managedQuery(TrackerProvider.CONTENT_URI, + TrackerEntry.ATTRIBUTES, null, null, SORT_ORDER); + // Used to map tracker entries from the database to views + TrackerAdapter adapter = new TrackerAdapter(mActivity, layout, cursor); + mActivity.setListAdapter(adapter); + cursor.setNotificationUri(mActivity.getContentResolver(), + TrackerProvider.CONTENT_URI); + + } + + private class TrackerAdapter extends ResourceCursorAdapter { + + public TrackerAdapter(Context context, int layout, Cursor c) { + super(context, layout, c); + } + + @Override + public void bindView(View view, Context context, Cursor cursor) { + final TextView v = (TextView) view + .findViewById(R.id.entrylist_item); + String rowText = mFormatter.getOutput(TrackerEntry + .createEntry(cursor)); + v.setText(rowText); + } + } +} |