mirror of
https://github.com/gsantner/dandelion
synced 2024-11-16 17:32:08 +01:00
53 lines
2.1 KiB
XML
53 lines
2.1 KiB
XML
|
<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
|
||
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
||
|
android:paddingTop="@dimen/activity_vertical_margin"
|
||
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
||
|
android:id="@+id/podsLayout"
|
||
|
tools:context="ar.com.tristeslostrestigres.diasporanativewebapp.PodsActivity">
|
||
|
|
||
|
<ListView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/lstPods"
|
||
|
android:choiceMode="singleChoice"
|
||
|
android:layout_below="@+id/edtFilter"
|
||
|
android:layout_above="@+id/textView" />
|
||
|
|
||
|
<EditText
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/edtFilter"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:hint="@string/filter_hint"
|
||
|
android:layout_toLeftOf="@+id/imgSelectPod"
|
||
|
android:layout_toStartOf="@+id/imgSelectPod"
|
||
|
android:inputType="textUri|textWebEditText" />
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingRight="5dp"
|
||
|
android:paddingLeft="5dp"
|
||
|
android:id="@+id/imgSelectPod"
|
||
|
android:src="@mipmap/ic_arrow_right_grey600_24dp"
|
||
|
android:layout_above="@+id/lstPods"
|
||
|
android:layout_alignRight="@+id/lstPods"
|
||
|
android:layout_alignEnd="@+id/lstPods"
|
||
|
android:layout_alignTop="@+id/edtFilter"
|
||
|
android:contentDescription="@string/confirm_url" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
||
|
android:text="@string/podlist_source_note"
|
||
|
android:id="@+id/textView"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:layout_alignParentStart="true" />
|
||
|
|
||
|
</RelativeLayout>
|
||
|
|