Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e1246c52 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

Merge "Follow preferences padding changes in framework."

parents 82f92e50 dcf8ba9e
Loading
Loading
Loading
Loading
+0 −42
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2010 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.
-->

<!-- Based on preference_list_fragment.xml in framework -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:background="@android:color/transparent">

    <ListView android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingTop="0dip"
        android:paddingBottom="@*android:dimen/preference_fragment_padding_bottom"
        android:paddingLeft="@*android:dimen/preference_fragment_padding_side"
        android:paddingRight="@*android:dimen/preference_fragment_padding_side"
        android:clipToPadding="false"
        android:drawSelectorOnTop="false"
        android:cacheColorHint="@android:color/transparent"
        android:scrollbarAlwaysDrawVerticalTrack="true" />

    <TextView android:id="@+id/empty"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:padding="5dip"
        android:gravity="center"
        android:visibility="gone" />
</LinearLayout>
+1 −9
Original line number Original line Diff line number Diff line
@@ -81,7 +81,6 @@ public class UserDictionarySettings extends ListFragment implements DialogCreata
    /** The word being edited in the dialog (null means the user is adding a word). */
    /** The word being edited in the dialog (null means the user is adding a word). */
    private String mDialogEditingWord;
    private String mDialogEditingWord;


    private View mView;
    private Cursor mCursor;
    private Cursor mCursor;


    protected String mLocale;
    protected String mLocale;
@@ -96,13 +95,6 @@ public class UserDictionarySettings extends ListFragment implements DialogCreata
        super.onCreate(savedInstanceState);
        super.onCreate(savedInstanceState);
    }
    }


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        mView = inflater.inflate(R.layout.custom_preference_list_fragment, container, false);
        return mView;
    }

    @Override
    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        super.onActivityCreated(savedInstanceState);
@@ -126,7 +118,7 @@ public class UserDictionarySettings extends ListFragment implements DialogCreata


        mLocale = locale;
        mLocale = locale;
        mCursor = createCursor(locale);
        mCursor = createCursor(locale);
        TextView emptyView = (TextView)mView.findViewById(R.id.empty);
        TextView emptyView = (TextView) getView().findViewById(android.R.id.empty);
        emptyView.setText(R.string.user_dict_settings_empty_text);
        emptyView.setText(R.string.user_dict_settings_empty_text);


        final ListView listView = getListView();
        final ListView listView = getListView();
+1 −9
Original line number Original line Diff line number Diff line
@@ -69,7 +69,6 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment {
    private PreferenceGroup mAvailableDevicesCategory;
    private PreferenceGroup mAvailableDevicesCategory;
    private boolean mAvailableDevicesCategoryIsPresent;
    private boolean mAvailableDevicesCategoryIsPresent;


    private View mView;
    private TextView mEmptyView;
    private TextView mEmptyView;


    private final IntentFilter mIntentFilter;
    private final IntentFilter mIntentFilter;
@@ -97,18 +96,11 @@ public final class BluetoothSettings extends DeviceListPreferenceFragment {
        mIntentFilter = new IntentFilter(BluetoothAdapter.ACTION_LOCAL_NAME_CHANGED);
        mIntentFilter = new IntentFilter(BluetoothAdapter.ACTION_LOCAL_NAME_CHANGED);
    }
    }


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        mView = inflater.inflate(R.layout.custom_preference_list_fragment, container, false);
        return mView;
    }

    @Override
    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        super.onActivityCreated(savedInstanceState);


        mEmptyView = (TextView) mView.findViewById(R.id.empty);
        mEmptyView = (TextView) getView().findViewById(android.R.id.empty);
        getListView().setEmptyView(mEmptyView);
        getListView().setEmptyView(mEmptyView);
    }
    }


+1 −9
Original line number Original line Diff line number Diff line
@@ -114,7 +114,6 @@ public class WifiSettings extends SettingsPreferenceFragment


    private WifiDialog mDialog;
    private WifiDialog mDialog;


    private View mView;
    private TextView mEmptyView;
    private TextView mEmptyView;


    /* Used in Wifi Setup context */
    /* Used in Wifi Setup context */
@@ -162,13 +161,6 @@ public class WifiSettings extends SettingsPreferenceFragment
        mInXlSetupWizard = (activity instanceof WifiSettingsForSetupWizardXL);
        mInXlSetupWizard = (activity instanceof WifiSettingsForSetupWizardXL);
    }
    }


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        mView = inflater.inflate(R.layout.custom_preference_list_fragment, container, false);
        return mView;
    }

    @Override
    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
    public void onActivityCreated(Bundle savedInstanceState) {
        // We don't call super.onActivityCreated() here, since it assumes we already set up
        // We don't call super.onActivityCreated() here, since it assumes we already set up
@@ -227,7 +219,7 @@ public class WifiSettings extends SettingsPreferenceFragment
            mWifiEnabler = new WifiEnabler(activity, actionBarSwitch);
            mWifiEnabler = new WifiEnabler(activity, actionBarSwitch);
        }
        }


        mEmptyView = (TextView) mView.findViewById(R.id.empty);
        mEmptyView = (TextView) getView().findViewById(android.R.id.empty);
        getListView().setEmptyView(mEmptyView);
        getListView().setEmptyView(mEmptyView);


        registerForContextMenu(getListView());
        registerForContextMenu(getListView());