102
102
import com .zulip .android .networking .response .UploadResponse ;
103
103
import com .zulip .android .util .ActivityTransitionAnim ;
104
104
import com .zulip .android .util .AnimationHelper ;
105
- import com .zulip .android .util .Constants ;
106
105
import com .zulip .android .util .CommonProgressDialog ;
106
+ import com .zulip .android .util .Constants ;
107
107
import com .zulip .android .util .FilePathHelper ;
108
108
import com .zulip .android .util .MutedTopics ;
109
109
import com .zulip .android .util .RemoveViewsOnScroll ;
@@ -209,7 +209,7 @@ public void onReceive(Context contenxt, Intent intent) {
209
209
private EditText etSearchStream ;
210
210
private ImageView ivSearchStreamCancel ;
211
211
private ListView peopleDrawer ;
212
- private Toast toast ;
212
+ private Toast toast ;
213
213
//
214
214
private String streamSearchFilterKeyword = "" ;
215
215
private SimpleCursorAdapter .ViewBinder peopleBinder = new SimpleCursorAdapter .ViewBinder () {
@@ -1112,7 +1112,7 @@ public void onClick(View view) {
1112
1112
*/
1113
1113
private void showSoftKeyboard () {
1114
1114
InputMethodManager imm = (InputMethodManager ) getSystemService (Context .INPUT_METHOD_SERVICE );
1115
- imm .toggleSoftInput (InputMethodManager .SHOW_IMPLICIT ,InputMethodManager .HIDE_IMPLICIT_ONLY );
1115
+ imm .toggleSoftInput (InputMethodManager .SHOW_IMPLICIT , InputMethodManager .HIDE_IMPLICIT_ONLY );
1116
1116
}
1117
1117
1118
1118
private void displayChatBox (boolean show ) {
@@ -1700,7 +1700,7 @@ public void onBackPressed() {
1700
1700
drawerLayout .closeDrawers ();
1701
1701
return ;
1702
1702
}
1703
- //check for narrowed or not
1703
+ //check for narrowed or not
1704
1704
if (narrowedList == null ) {
1705
1705
1706
1706
if (backPressedOnce ) {
@@ -1755,7 +1755,8 @@ private void dismissToast() {
1755
1755
1756
1756
/**
1757
1757
* If previous toast is showing cancel it and show new one
1758
- * @param string message in the toast
1758
+ *
1759
+ * @param string message in the toast
1759
1760
* @param duration of the toast to be shown
1760
1761
*/
1761
1762
private void showToast (String string , int duration ) {
@@ -1821,7 +1822,7 @@ private void narrowPMWith(final Person person) {
1821
1822
if (!person .getEmail ().equals (app .getYou ().getEmail ()))
1822
1823
list .add (app .getYou ());
1823
1824
doNarrow (new NarrowFilterPM (list ));
1824
- onNarrowFillSendBoxPrivate (new Person []{person },false );
1825
+ onNarrowFillSendBoxPrivate (new Person []{person }, false );
1825
1826
}
1826
1827
1827
1828
@ TargetApi (Build .VERSION_CODES .HONEYCOMB )
@@ -1861,7 +1862,8 @@ public void doNarrow(NarrowFilter filter) {
1861
1862
/**
1862
1863
* This method creates a new Instance of the MessageListFragment and displays it with the filter
1863
1864
* whiling keeping the view anchored at {@param messageId}.
1864
- * @param filter NarrowFilter passed
1865
+ *
1866
+ * @param filter NarrowFilter passed
1865
1867
* @param messageId used as anchor for fetching messages
1866
1868
*/
1867
1869
public void doNarrow (NarrowFilter filter , int messageId ) {
@@ -2150,7 +2152,7 @@ private void setNightMode(@AppCompatDelegate.NightMode int nightMode) {
2150
2152
private void logout () {
2151
2153
commonProgressDialog .showWithMessage (getString (R .string .logging_out ));
2152
2154
this .logged_in = false ;
2153
- final String serverUrl = app .getServerHostUri () ;
2155
+ final String serverUrl = app .getServerHostUri ();
2154
2156
2155
2157
notifications .logOut (new Runnable () {
2156
2158
public void run () {
@@ -2296,6 +2298,7 @@ private void setupSnackBar() {
2296
2298
NarrowFilter narrowFilter ;
2297
2299
String prevId = null ;
2298
2300
int prevMessageSameCount = -1 ;
2301
+
2299
2302
private void showSnackbarNotification (Message [] messages ) {
2300
2303
MutedTopics mutedTopics = MutedTopics .get ();
2301
2304
String notificationMessage ;
@@ -2337,7 +2340,7 @@ public void onClick(View view) {
2337
2340
});
2338
2341
} else {
2339
2342
if (messages .length == 1 ) tempMessage = messages [0 ];
2340
- String name = (tempMessage .getType () == MessageType .PRIVATE_MESSAGE ) ? getString (R .string .notify_private , tempMessage .getSenderFullName ()) : getString (R .string .notify_stream , tempMessage .getStream ().getName () , tempMessage .getSubject ());
2343
+ String name = (tempMessage .getType () == MessageType .PRIVATE_MESSAGE ) ? getString (R .string .notify_private , tempMessage .getSenderFullName ()) : getString (R .string .notify_stream , tempMessage .getStream ().getName (), tempMessage .getSubject ());
2341
2344
if (prevMessageSameCount > 0 ) name += " (" + prevMessageSameCount + ")" ;
2342
2345
notificationMessage = getResources ().getQuantityString (R .plurals .new_message , nonMutedMessagesCount , nonMutedMessagesCount , name );
2343
2346
narrowFilter = (tempMessage .getType () == MessageType .PRIVATE_MESSAGE ) ? new NarrowFilterPM (Arrays .asList (tempMessage .getRecipients (app ))) : new NarrowFilterStream (tempMessage .getStream (), tempMessage .getSubject ());
@@ -2369,6 +2372,7 @@ public MessageListFragment getCurrentMessageList() {
2369
2372
return narrowedList ;
2370
2373
}
2371
2374
}
2375
+
2372
2376
/**
2373
2377
* This function shows the snackbar stating the connectivity status of the device and also changes the behaviour of the
2374
2378
* fab.
@@ -2391,7 +2395,7 @@ public void handleMessage(android.os.Message msg) {
2391
2395
displayChatBox (false );
2392
2396
displayFAB (true );
2393
2397
//Displays old offline messages
2394
- if (narrowedList == null )
2398
+ if (narrowedList == null )
2395
2399
onReadyToDisplay (true );
2396
2400
networkStatus = Constants .STATUS_NOT_CONNECTED ;
2397
2401
Snackbar .make (coordinatorLayout , R .string .no_connection , Snackbar .LENGTH_INDEFINITE ).show ();
0 commit comments