Skip to content

Commit

Permalink
removed LinearLayouts from fragment_date and fragment_time
Browse files Browse the repository at this point in the history
  • Loading branch information
jjobes committed Feb 3, 2015
1 parent 5b2ada2 commit f5de0ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 21 deletions.
15 changes: 4 additions & 11 deletions SlideDateTimePicker/res/layout/fragment_date.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
<com.github.jjobes.slidedatetimepicker.CustomDatePicker
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:id="@+id/datePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center" >

<com.github.jjobes.slidedatetimepicker.CustomDatePicker
android:id="@+id/datePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:calendarViewShown="false" />

</LinearLayout>
android:calendarViewShown="false" />
13 changes: 3 additions & 10 deletions SlideDateTimePicker/res/layout/fragment_time.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
<com.github.jjobes.slidedatetimepicker.CustomTimePicker
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/timePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center" >

<com.github.jjobes.slidedatetimepicker.CustomTimePicker
android:id="@+id/timePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</LinearLayout>
android:layout_height="wrap_content" />

0 comments on commit f5de0ec

Please sign in to comment.