Skip to content

Commit

Permalink
Added Tickmate Activity layout
Browse files Browse the repository at this point in the history
  • Loading branch information
lordi committed Apr 27, 2015
1 parent 5bb0cc3 commit 8a2e008
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions res/layout/activity_tickmate_list.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="0dp"
android:paddingRight="0dp">

<LinearLayout
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="60dp"
android:orientation="vertical" />

<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:divider="@null"
android:dividerHeight="0dp"
android:drawSelectorOnTop="false"
android:padding="0dp" />

</LinearLayout>

0 comments on commit 8a2e008

Please sign in to comment.