forked from signalapp/Signal-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move default SMS and system import to "reminders"
// FREEBIE Closes signalapp#1730
- Loading branch information
Showing
17 changed files
with
227 additions
and
33 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:state_pressed="true" android:drawable="@color/light_button_highlight" /> | ||
<item android:drawable="@color/light_button" /> | ||
</selector> |
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 |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content"> | ||
<LinearLayout android:id="@+id/container" | ||
android:orientation="horizontal" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:gravity="center_vertical" | ||
android:background="?reminder_header_background"> | ||
|
||
<ImageView android:id="@+id/icon" | ||
android:layout_width="50dp" | ||
android:layout_height="50dp" | ||
android:src="@drawable/sms_selection_icon" | ||
android:padding="5dp"/> | ||
|
||
<LinearLayout android:id="@+id/reminder" | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:layout_margin="10dp" | ||
android:orientation="vertical"> | ||
|
||
<TextView android:id="@+id/reminder_title" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="5dp" | ||
android:textColor="@color/white" | ||
android:textSize="18sp"/> | ||
|
||
<TextView android:id="@+id/reminder_text" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:fontFamily="sans-serif-light" | ||
android:textColor="@color/white" | ||
android:textSize="16sp"/> | ||
|
||
</LinearLayout> | ||
|
||
<LinearLayout android:layout_width="wrap_content" | ||
android:layout_height="match_parent" | ||
android:gravity="right" | ||
android:layout_marginLeft="15dp" | ||
android:orientation="vertical"> | ||
|
||
<LinearLayout android:layout_width="wrap_content" | ||
android:layout_height="0dp" | ||
android:layout_weight="1" | ||
android:gravity="top"> | ||
|
||
<ImageButton android:id="@+id/cancel" | ||
android:layout_width="40dp" | ||
android:layout_height="40dp" | ||
android:padding="10dp" | ||
android:background="@drawable/touch_highlight_background" | ||
android:src="@drawable/ic_menu_remove_holo_light"/> | ||
</LinearLayout> | ||
|
||
<LinearLayout android:layout_width="wrap_content" | ||
android:layout_height="0dp" | ||
android:layout_weight="1" | ||
android:gravity="bottom"> | ||
|
||
<Button android:id="@+id/ok" | ||
android:layout_width="60sp" | ||
android:layout_height="40sp" | ||
android:gravity="center_vertical|center_horizontal" | ||
android:background="@drawable/light_touch_highlight_background" | ||
android:fontFamily="sans-serif-light" | ||
android:textColor="@color/white" | ||
android:text="@string/yes" | ||
android:padding="2dp"/> | ||
|
||
</LinearLayout> | ||
|
||
</LinearLayout> | ||
|
||
</LinearLayout> | ||
</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
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
Oops, something went wrong.