blob: dc2c0248f767235a7a2751453a0734442a9eaa3b [file] [log] [blame]
/*
* Copyright (C) 2011 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 android.theme.cts;
import android.view.View;
import android.widget.SearchView;
/**
* This class modifies {@link SearchView} for the various tests that test
* the look of it.
*/
public class SearchViewModifier implements ThemeTestModifier {
public static final int QUERY_HINT = 0;
public static final int QUERY = 1;
private int mSearchViewType;
public SearchViewModifier(int searchViewType) {
mSearchViewType = searchViewType;
}
@Override
public View modifyView(View view) {
SearchView sv = (SearchView) view;
switch (mSearchViewType) {
case QUERY_HINT:
sv.setQueryHint("Query Hint");
break;
case QUERY:
sv.setQuery("Query", false);
break;
}
sv.setIconifiedByDefault(false);
return sv;
}
}