|
|
@ -16,9 +16,12 @@
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms.components;
|
|
|
|
package org.thoughtcrime.securesms.components;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Iterator;
|
|
|
|
import android.content.Context;
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import android.os.Build;
|
|
|
|
import java.util.List;
|
|
|
|
import android.util.AttributeSet;
|
|
|
|
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
|
|
|
|
import android.view.View;
|
|
|
|
|
|
|
|
import android.widget.RelativeLayout;
|
|
|
|
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.R;
|
|
|
|
import org.thoughtcrime.securesms.R;
|
|
|
|
import org.thoughtcrime.securesms.contacts.RecipientsAdapter;
|
|
|
|
import org.thoughtcrime.securesms.contacts.RecipientsAdapter;
|
|
|
@ -28,12 +31,9 @@ import org.thoughtcrime.securesms.recipients.RecipientFactory;
|
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientFormattingException;
|
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientFormattingException;
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
|
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import java.util.Iterator;
|
|
|
|
import android.util.AttributeSet;
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import android.util.Log;
|
|
|
|
import java.util.List;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
|
|
|
|
import android.view.View;
|
|
|
|
|
|
|
|
import android.widget.RelativeLayout;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Panel component combining both an editable field with a button for
|
|
|
|
* Panel component combining both an editable field with a button for
|
|
|
@ -102,6 +102,11 @@ public class RecipientsPanel extends RelativeLayout {
|
|
|
|
LayoutInflater inflater = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
LayoutInflater inflater = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
inflater.inflate(R.layout.recipients_panel, this, true);
|
|
|
|
inflater.inflate(R.layout.recipients_panel, this, true);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
View imageButton = findViewById(R.id.contacts_button);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH)
|
|
|
|
|
|
|
|
((MarginLayoutParams) imageButton.getLayoutParams()).topMargin = 0;
|
|
|
|
|
|
|
|
|
|
|
|
panel = findViewById(R.id.recipients_panel);
|
|
|
|
panel = findViewById(R.id.recipients_panel);
|
|
|
|
initRecipientsEditor();
|
|
|
|
initRecipientsEditor();
|
|
|
|
}
|
|
|
|
}
|
|
|
|