-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed bugs in Notification Schedule app setting, "Setup Apps" page regarding badly sorted app list and with the "What's New" section not showing up on app update correctly. Additionally, made UI improvements.
- Loading branch information
1 parent
84d46d6
commit 70029a4
Showing
10 changed files
with
244 additions
and
188 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,104 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:padding="@dimen/activity_padding"> | ||
<ScrollView | ||
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:background="@color/white"> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:labelFor="@+id/filterText" | ||
android:textAppearance="?android:attr/textAppearanceLarge" | ||
android:text="@string/filter_heading"/> | ||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:labelFor="@+id/filterText" | ||
android:textAppearance="?android:attr/textAppearanceMedium" | ||
android:text="@string/filter_desc"/> | ||
|
||
<EditText | ||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:inputType="text" | ||
android:id="@+id/filterText"/> | ||
android:orientation="vertical" | ||
android:padding="@dimen/activity_padding" | ||
android:descendantFocusability="beforeDescendants" | ||
android:focusable="true" | ||
android:focusableInTouchMode="true"> | ||
|
||
<Space | ||
android:layout_width="match_parent" | ||
android:layout_height="@dimen/activity_padding"/> | ||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:labelFor="@+id/filterText" | ||
android:textAppearance="?android:attr/textAppearanceLarge" | ||
android:text="@string/filter_heading"/> | ||
|
||
<Switch | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:textAppearance="?android:attr/textAppearanceLarge" | ||
android:text="@string/discard_empty_notifications" | ||
android:id="@+id/discard_empty"/> | ||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:labelFor="@+id/filterText" | ||
android:textAppearance="?android:attr/textAppearanceMedium" | ||
android:text="@string/filter_desc"/> | ||
|
||
<Space | ||
android:layout_width="match_parent" | ||
android:layout_height="@dimen/activity_padding"/> | ||
<EditText | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:inputType="text" | ||
android:id="@+id/filterText"/> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:textAppearance="?android:attr/textAppearanceLarge" | ||
android:text="@string/schedule_heading"/> | ||
<Space | ||
android:layout_width="match_parent" | ||
android:layout_height="@dimen/activity_padding"/> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:textAppearance="?android:attr/textAppearanceMedium" | ||
android:text="@string/schedule_desc"/> | ||
<Switch | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:textAppearance="?android:attr/textAppearanceLarge" | ||
android:text="@string/discard_empty_notifications" | ||
android:id="@+id/discard_empty"/> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="horizontal" | ||
android:layout_marginLeft="16dp" | ||
android:layout_marginRight="16dp" | ||
style="?android:attr/buttonBarStyle"> | ||
<Space | ||
android:layout_width="match_parent" | ||
android:layout_height="@dimen/activity_padding"/> | ||
|
||
<Button | ||
android:id="@+id/start_time" | ||
android:layout_width="0dp" | ||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="3" | ||
style="?android:attr/buttonBarButtonStyle" | ||
tools:text="12:00 AM" | ||
android:textStyle="bold" | ||
android:textSize="16sp"/> | ||
android:textAppearance="?android:attr/textAppearanceLarge" | ||
android:text="@string/schedule_heading"/> | ||
|
||
<TextView | ||
android:layout_width="0dp" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:layout_gravity="center" | ||
android:textAppearance="?android:attr/textAppearanceMedium" | ||
android:text="to" | ||
android:gravity="center"/> | ||
android:text="@string/schedule_desc"/> | ||
|
||
<Button | ||
android:id="@+id/stop_time" | ||
android:layout_width="0dp" | ||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="3" | ||
style="?android:attr/buttonBarButtonStyle" | ||
tools:text="11:59 PM" | ||
android:textStyle="bold" | ||
android:textSize="16sp"/> | ||
android:orientation="horizontal" | ||
android:layout_marginLeft="16dp" | ||
android:layout_marginRight="16dp" | ||
style="?android:attr/buttonBarStyle"> | ||
|
||
<Button | ||
android:id="@+id/start_time" | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="3" | ||
style="?android:attr/buttonBarButtonStyle" | ||
tools:text="12:00 AM" | ||
android:textStyle="bold" | ||
android:textSize="16sp"/> | ||
|
||
<TextView | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:layout_gravity="center" | ||
android:textAppearance="?android:attr/textAppearanceMedium" | ||
android:text="to" | ||
android:gravity="center"/> | ||
|
||
<Button | ||
android:id="@+id/stop_time" | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="3" | ||
style="?android:attr/buttonBarButtonStyle" | ||
tools:text="11:59 PM" | ||
android:textStyle="bold" | ||
android:textSize="16sp"/> | ||
</LinearLayout> | ||
</LinearLayout> | ||
</ScrollView> | ||
|
||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.