mirror of
https://github.com/gsantner/dandelion
synced 2025-12-16 09:11:10 +01:00
Initial commit
This commit is contained in:
commit
22eccee75b
104 changed files with 3479 additions and 0 deletions
52
app/src/main/res/layout/activity_pods.xml
Normal file
52
app/src/main/res/layout/activity_pods.xml
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
<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>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue