summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/subscribe.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-06-10 19:24:24 +0300
committerAndrew Dolgov <[email protected]>2015-06-10 19:24:24 +0300
commitdffc737a93f90ec866cb9256e9768b08b13de93c (patch)
tree877be4a66846acd60bd6b04254624c4b0dddaf84 /org.fox.ttrss/src/main/res/layout/subscribe.xml
parent415d79199dcb39cac7e8f7d1979dfcbfaaa40aa6 (diff)
refactor layouts naming scheme
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout/subscribe.xml')
-rwxr-xr-xorg.fox.ttrss/src/main/res/layout/subscribe.xml73
1 files changed, 0 insertions, 73 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/subscribe.xml b/org.fox.ttrss/src/main/res/layout/subscribe.xml
deleted file mode 100755
index 8027faf4..00000000
--- a/org.fox.ttrss/src/main/res/layout/subscribe.xml
+++ /dev/null
@@ -1,73 +0,0 @@
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/main"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:animateLayoutChanges="true"
- android:padding="@dimen/activity_horizontal_margin" >
-
- <EditText
- android:id="@+id/feed_url"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignParentRight="true"
- android:ems="10"
- android:hint="@string/feed_url"
- android:inputType="textUri"
- android:maxLines="1" >
-
- <requestFocus />
- </EditText>
-
- <Spinner
- android:id="@+id/feed_spinner"
- android:visibility="gone"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignLeft="@+id/feed_url"
- android:layout_alignParentRight="true"
- android:layout_below="@+id/feed_url" />
-
- <Spinner
- android:id="@+id/category_spinner"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignLeft="@+id/feed_spinner"
- android:layout_alignParentRight="true"
- android:layout_below="@+id/feed_spinner" />
-
- <ProgressBar
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_below="@+id/category_spinner"
- android:layout_width="match_parent"
- android:visibility="invisible"
- android:layout_height="wrap_content"
- android:indeterminate="true"
- android:id="@+id/subscribe_progress" />
-
- <LinearLayout
- style="?android:attr/buttonBarStyle"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignLeft="@+id/category_spinner"
- android:layout_alignRight="@+id/category_spinner"
- android:layout_below="@+id/subscribe_progress" >
-
- <Button
- style="?android:attr/buttonBarButtonStyle"
- android:id="@+id/cats_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0.5"
- android:text="Update categories" />
-
- <Button
- style="?android:attr/buttonBarButtonStyle"
- android:id="@+id/subscribe_button"
- android:layout_width="wrap_content"
- android:layout_weight="0.5"
- android:layout_height="wrap_content"
- android:text="@string/subscribe_to_feed" />
- </LinearLayout>
-
-</RelativeLayout> \ No newline at end of file