mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
35 lines
1023 B
XML
35 lines
1023 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="@dimen/margin_small"
|
|
tools:context=".android.blogs.RssFeedImportActivity">
|
|
|
|
<EditText
|
|
android:id="@+id/urlInput"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:gravity="top"
|
|
android:hint="@string/blogs_rss_feeds_import_hint"
|
|
android:inputType="textMultiLine|textUri"/>
|
|
|
|
<Button
|
|
android:id="@+id/importButton"
|
|
style="@style/BriarButton"
|
|
android:enabled="false"
|
|
android:text="@string/blogs_rss_feeds_import_button"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="?android:attr/progressBarStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:visibility="gone"/>
|
|
|
|
</LinearLayout>
|