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

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

Reorder main fragment

parent 44989a42
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
android:padding="10dp"
android:scrollbarStyle="outsideInset"
>
<LinearLayout
android:orientation="vertical" android:orientation="vertical"
android:layout_width="fill_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="match_parent"
> >
<ImageView <ImageView
...@@ -18,25 +11,6 @@ ...@@ -18,25 +11,6 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@drawable/i2plogo" /> android:src="@drawable/i2plogo" />
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/label_statistics"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/main_status_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/label_main_controls"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Button <Button
android:id="@+id/router_start_button" android:id="@+id/router_start_button"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -59,5 +33,31 @@ ...@@ -59,5 +33,31 @@
android:drawableLeft="@drawable/stop_router_icon" /> android:drawableLeft="@drawable/stop_router_icon" />
--> -->
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
android:padding="10dp"
android:scrollbarStyle="outsideInset"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/label_statistics"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/main_status_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout> </LinearLayout>
</ScrollView> </ScrollView>
</LinearLayout>
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