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

Skip to content
Snippets Groups Projects
Commit f1ea9dde authored by zzz's avatar zzz
Browse files

- SusiDNS in 20 lines of code

- Show the toast
- First web page can be i2p
parent 95fd0061
No related branches found
No related tags found
No related merge requests found
......@@ -46,5 +46,9 @@
android.theme="@android:style/Theme.NoTitleBar"
android:launchMode="singleTop" >
</activity>
<activity android:name=".activity.AddressbookActivity"
android:label="Address Book"
android.theme="@android:style/Theme.NoTitleBar" >
</activity>
</application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:textSize="18sp"
android:text="Address Book" >
</TextView>
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="6dp"
android:textSize="16sp" >
</TextView>
......@@ -58,6 +58,18 @@
android:text="Licenses"
/>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<Button
android:id="@+id/addressbook_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Address Book"
/>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
......
package net.i2p.android.router.activity;
import android.app.ListActivity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import net.i2p.android.router.R;
import net.i2p.I2PAppContext;
import net.i2p.client.naming.NamingService;
public class AddressbookActivity extends ListActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Fixme problems if started before router -
// wrong dir, dup contexts, locking, ...
I2PAppContext ctx = I2PAppContext.getGlobalContext();
// get the names
NamingService ns = ctx.namingService();
Set<String> names = ns.getNames();
// set the header
TextView tv = (TextView) getLayoutInflater().inflate(R.layout.addressbook_header, null);
tv.setText(names.size() + " hosts in address book. Start typing to filter");
ListView lv = getListView();
lv.addHeaderView(tv);
lv.setTextFilterEnabled(true);
// set the list
List<String> nameList = new ArrayList(names);
Collections.sort(nameList);
setListAdapter(new ArrayAdapter<String>(this, R.layout.addressbook_list_item, nameList));
// set the callback
lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView parent, View view, int pos, long id) {
CharSequence host = ((TextView) view).getText();
Intent intent = new Intent(view.getContext(), WebActivity.class);
intent.setData(Uri.parse("http://" + host + '/'));
startActivity(intent);
}
});
}
}
......@@ -32,6 +32,7 @@ class I2PWebViewClient extends WebViewClient {
String s = uri.getScheme();
if (s == null) {
Toast toast = Toast.makeText(view.getContext(), "Bad URL " + url, Toast.LENGTH_SHORT);
toast.show();
return true;
}
s = s.toLowerCase();
......@@ -40,6 +41,7 @@ class I2PWebViewClient extends WebViewClient {
String h = uri.getHost();
if (h == null) {
Toast toast = Toast.makeText(view.getContext(), "Bad URL " + url, Toast.LENGTH_SHORT);
toast.show();
return true;
}
......@@ -47,6 +49,7 @@ class I2PWebViewClient extends WebViewClient {
if (h.endsWith(".i2p")) {
if (!s.equals("http")) {
Toast toast = Toast.makeText(view.getContext(), "Bad URL " + url, Toast.LENGTH_SHORT);
toast.show();
return true;
}
// strip trailing junk
......
......@@ -92,6 +92,14 @@ public class MainActivity extends I2PActivityBase {
}
});
Button addressbook = (Button) findViewById(R.id.addressbook_button);
addressbook.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent intent = new Intent(view.getContext(), AddressbookActivity.class);
startActivity(intent);
}
});
Button start = (Button) findViewById(R.id.router_start_button);
start.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
......
......@@ -41,8 +41,10 @@ public class WebActivity extends I2PActivityBase {
Intent intent = getIntent();
Uri uri = intent.getData();
if (uri != null) {
wv.getSettings().setLoadsImagesAutomatically(true);
wv.loadUrl(uri.toString());
//wv.getSettings().setLoadsImagesAutomatically(true);
//wv.loadUrl(uri.toString());
// go thru the client so .i2p will work too
_wvClient.shouldOverrideUrlLoading(wv, uri.toString());
} else {
wv.getSettings().setLoadsImagesAutomatically(false);
int id = intent.getIntExtra(HTML_RESOURCE_ID, R.raw.welcome_html);
......
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