本文整理汇总了Java中com.chrulri.droidtv.utils.StringUtils类的典型用法代码示例。如果您正苦于以下问题:Java StringUtils类的具体用法?Java StringUtils怎么用?Java StringUtils使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
StringUtils类属于com.chrulri.droidtv.utils包,在下文中一共展示了StringUtils类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onPreExecute
import com.chrulri.droidtv.utils.StringUtils; //导入依赖的package包/类
@Override
protected void onPreExecute() {
setEnabled(false);
_textView.setText(null);
// dvbType
_dvbType = PreferenceUtils.getDvbType(ScanActivity.this);
_type = (String) Utils.decode(_dvbType, DvbType.ATSC, "a",
DvbType.DVBC, "c",
DvbType.DVBS, "s",
DvbType.DVBT, "t");
// country
int countryIdx = _countryList.getSelectedItemPosition();
if (countryIdx == AdapterView.INVALID_POSITION) {
// TODO localize error
ErrorUtils.error(ScanActivity.this, "no country selected");
cancel(true);
return;
}
_country = WSCAN_COUNTRIES[countryIdx][0];
// fileName
String fileName = _fileNameView.getText().toString();
if (StringUtils.isNullOrEmpty(fileName)) {
// TODO localize errror
ErrorUtils.error(ScanActivity.this,
"please enter file name for channels file");
cancel(true);
return;
}
_outFile = Utils.getConfigsFile(ScanActivity.this, fileName + ".conf");
// TODO redesign print of type and country
_textView.append(_type + "/" + _country);
_textView.append(StringUtils.NEWLINE);
}
示例2: onProgressUpdate
import com.chrulri.droidtv.utils.StringUtils; //导入依赖的package包/类
@Override
protected void onProgressUpdate(CharSequence... values) {
if (isCancelled())
return;
_textView.append(values[0]);
_textView.append(StringUtils.NEWLINE);
_scrollView.post(new Runnable() {
public void run() {
_scrollView.fullScroll(ScrollView.FOCUS_DOWN);
}
});
}
示例3: setChannelList
import com.chrulri.droidtv.utils.StringUtils; //导入依赖的package包/类
/**
* @param channelList list name, insert null to read config from settings
*/
private void setChannelList(String channelList) {
if (channelList == null) {
channelList = PreferenceUtils.get(this).getString(PreferenceUtils.KEY_CHANNELCONFIGS, null);
}
if (StringUtils.isNullOrEmpty(channelList) || Utils.getConfigsFile(this,
channelList) == null) {
String[] files = Utils.getConfigsDir(this).list();
if (files.length == 1) {
channelList = files[0];
} else {
channelList = null;
}
}
if (channelList == null) {
mSpinner.setSelection(AdapterView.INVALID_POSITION);
} else {
for (int i = 0; i < mSpinner.getAdapter().getCount(); i++) {
if (channelList.equals(mSpinner.getAdapter().getItem(i))) {
mSpinner.setSelection(i);
break;
}
}
}
}