[tor-commits] [orbot/master] Move layout

n8fr8 at torproject.org n8fr8 at torproject.org
Thu Mar 2 04:10:20 UTC 2017


commit 135e6c4ae077e22b8379676ead315707b8e9e39c
Author: arrase <arrase at gmail.com>
Date:   Thu Nov 17 02:35:38 2016 +0100

    Move layout
---
 app/src/main/res/layout-v21/onion_item.xml | 25 -------------------------
 app/src/main/res/layout/onion_item.xml     | 22 ++++++++++++++++++++++
 2 files changed, 22 insertions(+), 25 deletions(-)

diff --git a/app/src/main/res/layout-v21/onion_item.xml b/app/src/main/res/layout-v21/onion_item.xml
deleted file mode 100644
index 2d6aa05..0000000
--- a/app/src/main/res/layout-v21/onion_item.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:app="http://schemas.android.com/apk/res-auto"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content"
-    android:padding="5dp">
-
-
-    <LinearLayout
-        android:orientation="vertical"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent">
-
-        <TextView
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:id="@+id/hs_name" />
-
-        <TextView
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:id="@+id/hs_onion" />
-    </LinearLayout>
-
-</LinearLayout>
\ No newline at end of file
diff --git a/app/src/main/res/layout/onion_item.xml b/app/src/main/res/layout/onion_item.xml
new file mode 100644
index 0000000..717ed79
--- /dev/null
+++ b/app/src/main/res/layout/onion_item.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:orientation="vertical">
+
+    <LinearLayout
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical">
+
+        <TextView
+            android:id="@+id/hs_name"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content" />
+
+        <TextView
+            android:id="@+id/hs_onion"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content" />
+    </LinearLayout>
+</LinearLayout>
\ No newline at end of file





More information about the tor-commits mailing list