summaryrefslogtreecommitdiff
path: root/vdrmanager
diff options
context:
space:
mode:
Diffstat (limited to 'vdrmanager')
-rw-r--r--vdrmanager/src/de/bjusystems/vdrmanager/gui/BaseActivity.java6
-rw-r--r--vdrmanager/src/de/bjusystems/vdrmanager/gui/Utils.java4
2 files changed, 8 insertions, 2 deletions
diff --git a/vdrmanager/src/de/bjusystems/vdrmanager/gui/BaseActivity.java b/vdrmanager/src/de/bjusystems/vdrmanager/gui/BaseActivity.java
index 466a31d..f402ed7 100644
--- a/vdrmanager/src/de/bjusystems/vdrmanager/gui/BaseActivity.java
+++ b/vdrmanager/src/de/bjusystems/vdrmanager/gui/BaseActivity.java
@@ -34,6 +34,12 @@ public abstract class BaseActivity<Result, T extends ListView> extends ICSBaseAc
public static final int MENU_REFRESH = 99;
protected T listView;
+
+ @Override
+ public boolean onSearchRequested() {
+ // TODO Auto-generated method stub
+ return super.onSearchRequested();
+ }
protected ViewFlipper flipper;
diff --git a/vdrmanager/src/de/bjusystems/vdrmanager/gui/Utils.java b/vdrmanager/src/de/bjusystems/vdrmanager/gui/Utils.java
index 50e472c..7dbf7ed 100644
--- a/vdrmanager/src/de/bjusystems/vdrmanager/gui/Utils.java
+++ b/vdrmanager/src/de/bjusystems/vdrmanager/gui/Utils.java
@@ -301,8 +301,8 @@ public class Utils {
ConnectivityManager cm = (ConnectivityManager) ctx.getSystemService(Context.CONNECTIVITY_SERVICE);
// test for connection
if (cm.getActiveNetworkInfo() != null
- && cm.getActiveNetworkInfo().isAvailable()
- && cm.getActiveNetworkInfo().isConnected()) {
+ && cm.getActiveNetworkInfo().isConnectedOrConnecting()
+ ){
return true;
}
return false;