com.landawn.abacus.android.PreferenceActivityBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abacus-android Show documentation
Show all versions of abacus-android Show documentation
A general and simple library for Android
/*
* Copyright (C) 2016 HaiYang Li
*
* 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.landawn.abacus.android;
import android.preference.PreferenceActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.TextView;
// TODO: Auto-generated Javadoc
/**
*
* @author Haiyang Li
* @since 0.8
*/
public abstract class PreferenceActivityBase extends PreferenceActivity {
/**
* Gets the view by id.
*
* @param
* @param id
* @return
*/
public T getViewById(int id) {
return (T) this.findViewById(id);
}
/**
* Gets the view by id.
*
* @param
* @param cls
* @param id
* @return
*/
public T getViewById(Class cls, int id) {
return (T) this.findViewById(id);
}
/**
* Gets the text view by id.
*
* @param
* @param id
* @return
*/
public T getTextViewById(int id) {
return (T) this.findViewById(id);
}
/**
* Gets the edits the text by id.
*
* @param
* @param id
* @return
*/
public T getEditTextById(int id) {
return (T) this.findViewById(id);
}
/**
* Gets the image view by id.
*
* @param
* @param id
* @return
*/
public T getImageViewById(int id) {
return (T) this.findViewById(id);
}
/**
* Gets the button by id.
*
* @param
* @param id
* @return
*/
public T getButtonById(int id) {
return (T) this.findViewById(id);
}
/**
* Gets the view text by id.
*
* @param id
* @return
*/
public String getViewTextById(int id) {
return this.getTextViewById(id).getText().toString().trim();
}
}