mirror of
https://github.com/moparisthebest/SSLDroid
synced 2024-11-14 21:15:09 -05:00
422b11fdef
Migrated settings to be sqlite-based and the GUI to be based on ListActivity Signed-off-by: Balint Kovacs <blint@blint.hu>
10 lines
574 B
XML
10 lines
574 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical" android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<ListView android:id="@android:id/list" android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" ></ListView>
|
|
<TextView android:id="@android:id/empty" android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" android:text="@string/no_tunnels"/>
|
|
</LinearLayout>
|