AntennaPod/res/layout/addfeed.xml

31 lines
1020 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2012-04-14 23:02:38 +02:00
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/txtvFeedurl"
android:text="@string/feedurl_label"
android:layout_width="fill_parent"
2012-04-14 23:02:38 +02:00
android:layout_height="wrap_content"
/>
<EditText android:id="@+id/etxtFeedurl"
2012-04-14 23:02:38 +02:00
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button android:id="@+id/butConfirm"
android:text="@string/confirm_label"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Button android:id="@+id/butCancel"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/cancel_label"/>
</LinearLayout>
</LinearLayout>