I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit c044c4de authored by str4d's avatar str4d
Browse files

Use new callbacks for NetDbDetailFragment

parent c7055271
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,6 @@ package net.i2p.android.router.activity; ...@@ -3,7 +3,6 @@ package net.i2p.android.router.activity;
import net.i2p.android.router.R; import net.i2p.android.router.R;
import net.i2p.android.router.fragment.NetDbDetailFragment; import net.i2p.android.router.fragment.NetDbDetailFragment;
import net.i2p.android.router.fragment.NetDbListFragment; import net.i2p.android.router.fragment.NetDbListFragment;
import net.i2p.android.router.service.RouterService;
import net.i2p.android.router.util.Util; import net.i2p.android.router.util.Util;
import net.i2p.data.DataFormatException; import net.i2p.data.DataFormatException;
import net.i2p.data.Hash; import net.i2p.data.Hash;
...@@ -33,11 +32,6 @@ public class NetDbDetailActivity extends I2PActivityBase implements ...@@ -33,11 +32,6 @@ public class NetDbDetailActivity extends I2PActivityBase implements
} }
} }
@Override
protected void onRouterBind(RouterService svc) {
mDetailFrag.onRouterBind();
}
// NetDbListFragment.OnEntrySelectedListener // NetDbListFragment.OnEntrySelectedListener
public void onEntrySelected(boolean isRouterInfo, Hash entryHash) { public void onEntrySelected(boolean isRouterInfo, Hash entryHash) {
......
...@@ -70,19 +70,11 @@ public class NetDbDetailFragment extends I2PFragmentBase { ...@@ -70,19 +70,11 @@ public class NetDbDetailFragment extends I2PFragmentBase {
} }
@Override @Override
public void onActivityCreated(Bundle savedInstanceState) { public void onRouterConnectionReady() {
super.onActivityCreated(savedInstanceState);
if (getRouterContext() != null && mEntry == null) if (getRouterContext() != null && mEntry == null)
loadEntry(); loadEntry();
} }
// Called by NetDbDetailActivity
public void onRouterBind() {
if (mEntry == null)
loadEntry();
}
private void loadEntry() { private void loadEntry() {
if (getNetDb().isInitialized()) { if (getNetDb().isInitialized()) {
Hash hash = new Hash(); Hash hash = new Hash();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment