#SD-185 - Make the UI compatible with SMS parsing changes #4
@ -6,7 +6,6 @@ import java.util.Calendar;
|
|||||||
import java.util.Hashtable;
|
import java.util.Hashtable;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Context;
|
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
@ -19,23 +18,21 @@ import com.safemobile.lib.Msg;
|
|||||||
import com.safemobile.lib.R;
|
import com.safemobile.lib.R;
|
||||||
import com.safemobile.lib.SM;
|
import com.safemobile.lib.SM;
|
||||||
|
|
||||||
public class ConversationGridViewAdapter extends BaseAdapter
|
public class ConversationGridViewAdapter extends BaseAdapter {
|
||||||
{
|
private final ArrayList<Msg> listMessages;
|
||||||
private ArrayList<Msg> listMessages;
|
private final Activity activity;
|
||||||
private Activity activity;
|
private final ArrayList<Boolean> dispatcherPositions;
|
||||||
//public String time;
|
private final ArrayList<Boolean> ackPositions;
|
||||||
private ArrayList<Boolean> dispatcher_positions = new ArrayList<Boolean>();
|
private final Hashtable<Integer, View> hash = new Hashtable<>();
|
||||||
private ArrayList<Boolean> ackPositions = new ArrayList<Boolean>();
|
|
||||||
private Hashtable<Integer, View> hash = new Hashtable<Integer, View>();
|
|
||||||
|
public ConversationGridViewAdapter(Activity activity, ArrayList<Msg> listMessages, ArrayList<Boolean> dispatcherPositions, ArrayList<Boolean> ackPositions) {
|
||||||
|
|
||||||
public ConversationGridViewAdapter(Activity activity, ArrayList<Msg> listMessages, Context context, long sc_id, int unit_type, ArrayList<Boolean> dispatcher_positions, ArrayList<Boolean> ackPositions) {
|
|
||||||
this.activity = activity;
|
this.activity = activity;
|
||||||
this.listMessages = listMessages;
|
this.listMessages = listMessages;
|
||||||
this.dispatcher_positions = dispatcher_positions;
|
this.dispatcherPositions = dispatcherPositions;
|
||||||
this.ackPositions = ackPositions;
|
this.ackPositions = ackPositions;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getCount() {
|
public int getCount() {
|
||||||
return listMessages.size();
|
return listMessages.size();
|
||||||
@ -51,149 +48,230 @@ public class ConversationGridViewAdapter extends BaseAdapter
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class ViewHolder
|
public static class ViewHolder {
|
||||||
{
|
private ImageView imgViewContact;
|
||||||
public ImageView imgViewContact;
|
private TextView txtViewMsg;
|
||||||
public TextView txtViewMsg;
|
private TextView txtViewDateTime;
|
||||||
public TextView txtViewDateTime;
|
private ImageView imgViewReceivedContact;
|
||||||
public ImageView imgViewReceivedContact;
|
private TextView txtViewReceivedMsg;
|
||||||
public TextView txtViewReceivedMsg;
|
private TextView txtViewReceivedDateTime;
|
||||||
public TextView txtViewReceivedDateTime;
|
private ImageView imageAck;
|
||||||
public ImageView imageAck;
|
private TextView textViewNotACK;
|
||||||
public TextView textViewNotACK;
|
private LinearLayout layoutSend;
|
||||||
public LinearLayout layoutSend;
|
private LinearLayout layoutReceived;
|
||||||
public LinearLayout layoutReceived;
|
|
||||||
|
public ImageView getImgViewContact() {
|
||||||
|
return imgViewContact;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setImgViewContact(ImageView imgViewContact) {
|
||||||
|
this.imgViewContact = imgViewContact;
|
||||||
|
}
|
||||||
|
|
||||||
|
public TextView getTxtViewMsg() {
|
||||||
|
return txtViewMsg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTxtViewMsg(TextView txtViewMsg) {
|
||||||
|
this.txtViewMsg = txtViewMsg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public TextView getTxtViewDateTime() {
|
||||||
|
return txtViewDateTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTxtViewDateTime(TextView txtViewDateTime) {
|
||||||
|
this.txtViewDateTime = txtViewDateTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ImageView getImgViewReceivedContact() {
|
||||||
|
return imgViewReceivedContact;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setImgViewReceivedContact(ImageView imgViewReceivedContact) {
|
||||||
|
this.imgViewReceivedContact = imgViewReceivedContact;
|
||||||
|
}
|
||||||
|
|
||||||
|
public TextView getTxtViewReceivedMsg() {
|
||||||
|
return txtViewReceivedMsg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTxtViewReceivedMsg(TextView txtViewReceivedMsg) {
|
||||||
|
this.txtViewReceivedMsg = txtViewReceivedMsg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public TextView getTxtViewReceivedDateTime() {
|
||||||
|
return txtViewReceivedDateTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTxtViewReceivedDateTime(TextView txtViewReceivedDateTime) {
|
||||||
|
this.txtViewReceivedDateTime = txtViewReceivedDateTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ImageView getImageAck() {
|
||||||
|
return imageAck;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setImageAck(ImageView imageAck) {
|
||||||
|
this.imageAck = imageAck;
|
||||||
|
}
|
||||||
|
|
||||||
|
public TextView getTextViewNotACK() {
|
||||||
|
return textViewNotACK;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTextViewNotACK(TextView textViewNotACK) {
|
||||||
|
this.textViewNotACK = textViewNotACK;
|
||||||
|
}
|
||||||
|
|
||||||
|
public LinearLayout getLayoutSend() {
|
||||||
|
return layoutSend;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLayoutSend(LinearLayout layoutSend) {
|
||||||
|
this.layoutSend = layoutSend;
|
||||||
|
}
|
||||||
|
|
||||||
|
public LinearLayout getLayoutReceived() {
|
||||||
|
return layoutReceived;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLayoutReceived(LinearLayout layoutReceived) {
|
||||||
|
this.layoutReceived = layoutReceived;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public View getView(int position, View convertView, ViewGroup parent) {
|
public View getView(int position, View convertView, ViewGroup parent) {
|
||||||
ViewHolder view;
|
ViewHolder view;
|
||||||
LayoutInflater inflator = activity.getLayoutInflater();
|
LayoutInflater inflater = activity.getLayoutInflater();
|
||||||
|
|
||||||
if(convertView==null)
|
if (convertView == null) {
|
||||||
{
|
|
||||||
view = new ViewHolder();
|
view = new ViewHolder();
|
||||||
convertView = inflator.inflate(R.layout.row_conversation, null);
|
convertView = inflater.inflate(R.layout.row_conversation, null);
|
||||||
|
|
||||||
view.imgViewContact = (ImageView) convertView.findViewById(R.id.imageViewSenderIco);
|
view.setImgViewContact(convertView.findViewById(R.id.imageViewSenderIco));
|
||||||
view.txtViewMsg = (TextView) convertView.findViewById(R.id.textViewSendMsg);
|
view.setTxtViewMsg(convertView.findViewById(R.id.textViewSendMsg));
|
||||||
view.txtViewDateTime = (TextView) convertView.findViewById(R.id.textViewSendDate);
|
view.setTxtViewDateTime(convertView.findViewById(R.id.textViewSendDate));
|
||||||
view.imgViewReceivedContact = (ImageView) convertView.findViewById(R.id.imageViewReceivedIco);
|
view.setImgViewReceivedContact(convertView.findViewById(R.id.imageViewReceivedIco));
|
||||||
view.txtViewReceivedMsg = (TextView) convertView.findViewById(R.id.textViewReceivedMsg);
|
view.setTxtViewReceivedMsg(convertView.findViewById(R.id.textViewReceivedMsg));
|
||||||
view.txtViewReceivedDateTime = (TextView) convertView.findViewById(R.id.textViewReceivedDate);
|
view.setTxtViewReceivedDateTime(convertView.findViewById(R.id.textViewReceivedDate));
|
||||||
view.layoutSend = (LinearLayout) convertView.findViewById(R.id.layoutSend);
|
view.setLayoutSend(convertView.findViewById(R.id.layoutSend));
|
||||||
view.layoutReceived = (LinearLayout) convertView.findViewById(R.id.layoutReceived);
|
view.setLayoutReceived(convertView.findViewById(R.id.layoutReceived));
|
||||||
view.textViewNotACK = (TextView) convertView.findViewById(R.id.textViewNotACKSendMsg);
|
view.setTextViewNotACK(convertView.findViewById(R.id.textViewNotACK));
|
||||||
view.imageAck = (ImageView) convertView.findViewById(R.id.imageAck);
|
view.setImageAck(convertView.findViewById(R.id.imageAck));
|
||||||
|
|
||||||
convertView.setTag(view);
|
convertView.setTag(view);
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
view = (ViewHolder) convertView.getTag();
|
view = (ViewHolder) convertView.getTag();
|
||||||
}
|
}
|
||||||
try
|
try {
|
||||||
{
|
|
||||||
hash.put(position, convertView);
|
hash.put(position, convertView);
|
||||||
|
|
||||||
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm MMM-dd");
|
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm MMM-dd");
|
||||||
Calendar calendar = Calendar.getInstance();
|
Calendar calendar = Calendar.getInstance();
|
||||||
calendar.set(Calendar.HOUR_OF_DAY,0);
|
calendar.set(Calendar.HOUR_OF_DAY, 0);
|
||||||
calendar.set(Calendar.MINUTE, 0);
|
calendar.set(Calendar.MINUTE, 0);
|
||||||
calendar.set(Calendar.SECOND, 0);
|
calendar.set(Calendar.SECOND, 0);
|
||||||
calendar.set(Calendar.MILLISECOND, 0);
|
calendar.set(Calendar.MILLISECOND, 0);
|
||||||
if(listMessages.get(position).received.after(calendar.getTime()))
|
if (listMessages.get(position).received.after(calendar.getTime()))
|
||||||
sdf = new SimpleDateFormat("HH:mm:ss");
|
sdf = new SimpleDateFormat("HH:mm:ss");
|
||||||
else
|
else
|
||||||
sdf = new SimpleDateFormat("HH:mm MMM-dd");
|
sdf = new SimpleDateFormat("HH:mm MMM-dd");
|
||||||
|
|
||||||
|
|
||||||
//view.imgViewContact.setImageResource(getIcon(listMessages.get(position).from.user_type));
|
view.getImgViewContact().setImageResource(R.drawable.peoplegreen_large);
|
||||||
view.imgViewContact.setImageResource(R.drawable.peoplegreen_large);
|
view.getTxtViewMsg().setText(listMessages.get(position).message);
|
||||||
view.txtViewMsg.setText(listMessages.get(position).message);
|
view.getTxtViewDateTime().setText(sdf.format(listMessages.get(position).received));
|
||||||
view.txtViewDateTime.setText(sdf.format(listMessages.get(position).received));
|
view.getImgViewReceivedContact().setImageResource(listMessages.get(position).from.getLargeIcon());
|
||||||
//view.imgViewReceivedContact.setImageResource(getIcon(listMessages.get(position).from.user_type));
|
view.getTxtViewReceivedMsg().setText(listMessages.get(position).message);
|
||||||
view.imgViewReceivedContact.setImageResource(listMessages.get(position).from.getLargeIcon());
|
view.getTxtViewReceivedDateTime().setText(sdf.format(listMessages.get(position).received));
|
||||||
view.txtViewReceivedMsg.setText(listMessages.get(position).message);
|
|
||||||
view.txtViewReceivedDateTime.setText(sdf.format(listMessages.get(position).received));
|
if (!ackPositions.isEmpty())
|
||||||
|
switch (Boolean.TRUE.equals(ackPositions.get(position)) ? 1 : 0) {
|
||||||
if(ackPositions.size() > 0)
|
case 0:
|
||||||
switch(ackPositions.get(position) ? 1: 0) {
|
// show not ack
|
||||||
case 0:
|
view.getTextViewNotACK().setVisibility(View.VISIBLE);
|
||||||
// show not ack
|
view.getImageAck().setVisibility(View.VISIBLE);
|
||||||
view.textViewNotACK.setVisibility(View.VISIBLE);
|
break;
|
||||||
view.imageAck.setVisibility(View.VISIBLE);
|
case 1:
|
||||||
break;
|
// show not ack
|
||||||
case 1:
|
view.getTextViewNotACK().setVisibility(View.INVISIBLE);
|
||||||
// show not ack
|
view.getImageAck().setVisibility(View.INVISIBLE);
|
||||||
view.textViewNotACK.setVisibility(View.INVISIBLE);
|
break;
|
||||||
view.imageAck.setVisibility(View.INVISIBLE);
|
default:
|
||||||
|
throw new IllegalStateException("Unexpected value: " + (Boolean.TRUE.equals(ackPositions.get(position)) ? 1 : 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
switch(dispatcher_positions.get(position) ? 1 : 0) {
|
switch (Boolean.TRUE.equals(dispatcherPositions.get(position)) ? 1 : 0) {
|
||||||
case 1:
|
case 1:
|
||||||
view.layoutReceived.setVisibility(View.GONE);
|
view.getLayoutReceived().setVisibility(View.GONE);
|
||||||
view.layoutSend.setVisibility(View.VISIBLE);
|
view.getLayoutSend().setVisibility(View.VISIBLE);
|
||||||
break;
|
break;
|
||||||
case 0:
|
case 0:
|
||||||
view.layoutReceived.setVisibility(View.VISIBLE);
|
view.getLayoutReceived().setVisibility(View.VISIBLE);
|
||||||
view.layoutSend.setVisibility(View.GONE);
|
view.getLayoutSend().setVisibility(View.GONE);
|
||||||
break;
|
break;
|
||||||
}
|
default:
|
||||||
}
|
throw new IllegalStateException("Unexpected value: " + (Boolean.TRUE.equals(dispatcherPositions.get(position)) ? 1 : 0));
|
||||||
catch(Exception ex)
|
}
|
||||||
{
|
} catch (Exception ex) {
|
||||||
SM.Exception(ex.toString());
|
SM.Exception(ex.toString());
|
||||||
}
|
}
|
||||||
return convertView;
|
return convertView;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setACK(String seqID)
|
public void setACK(String seqID) {
|
||||||
{
|
int position = -1;
|
||||||
int position = -1, i=0;
|
int i = 0;
|
||||||
|
|
||||||
for(Msg msg: listMessages)
|
for (Msg msg : listMessages) {
|
||||||
{
|
if (msg.seqID.equals(seqID))
|
||||||
if(msg.seqID.equals(seqID))
|
|
||||||
position = i;
|
position = i;
|
||||||
|
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(position > -1 && position < ackPositions.size()) {
|
if (position > -1 && position < ackPositions.size()) {
|
||||||
ackPositions.remove(position);
|
ackPositions.remove(position);
|
||||||
ackPositions.add(position, true);
|
ackPositions.add(position, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void changeView(String seqID)
|
public void changeView(String seqID) {
|
||||||
{
|
int position = -1;
|
||||||
int position = -1, i=0;
|
int i = 0;
|
||||||
|
|
||||||
for(Msg msg: listMessages)
|
for (Msg msg : listMessages) {
|
||||||
{
|
if (msg.seqID.equals(seqID))
|
||||||
if(msg.seqID.equals(seqID))
|
|
||||||
position = i;
|
position = i;
|
||||||
|
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(position != -1 && hash.size() > position)
|
if (position != -1 && hash.size() > position) {
|
||||||
{
|
|
||||||
SM.Debug("POSITON : " + position);
|
SM.Debug("POSITON : " + position);
|
||||||
View con = hash.get(position);
|
View con = hash.get(position);
|
||||||
ViewHolder view = (ViewHolder) con.getTag();
|
ViewHolder view = null;
|
||||||
|
if (con != null) {
|
||||||
switch(ackPositions.get(position) ? 1 : 0)
|
view = (ViewHolder) con.getTag();
|
||||||
{
|
}
|
||||||
|
|
||||||
|
switch (Boolean.TRUE.equals(ackPositions.get(position)) ? 1 : 0) {
|
||||||
case 1:
|
case 1:
|
||||||
view.imageAck.setVisibility(View.INVISIBLE);
|
if (view != null) {
|
||||||
view.textViewNotACK.setVisibility(View.INVISIBLE);
|
view.getImageAck().setVisibility(View.INVISIBLE);
|
||||||
|
view.getTextViewNotACK().setVisibility(View.INVISIBLE);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 0:
|
case 0:
|
||||||
view.imageAck.setVisibility(View.VISIBLE);
|
if (view != null) {
|
||||||
view.textViewNotACK.setVisibility(View.VISIBLE);
|
view.getImageAck().setVisibility(View.VISIBLE);
|
||||||
|
view.getTextViewNotACK().setVisibility(View.VISIBLE);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
throw new IllegalStateException("Unexpected value: " + (Boolean.TRUE.equals(ackPositions.get(position)) ? 1 : 0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,6 @@ import java.util.ArrayList;
|
|||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Context;
|
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
@ -18,20 +17,16 @@ import com.safemobile.lib.Msg;
|
|||||||
import com.safemobile.lib.R;
|
import com.safemobile.lib.R;
|
||||||
import com.safemobile.lib.SM;
|
import com.safemobile.lib.SM;
|
||||||
|
|
||||||
public class MessagesGridViewAdapter extends BaseAdapter
|
public class MessagesGridViewAdapter extends BaseAdapter {
|
||||||
{
|
private final ArrayList<Msg> listMessages;
|
||||||
private ArrayList<Msg> listMessages;
|
private final Activity activity;
|
||||||
private Activity activity;
|
|
||||||
//public String time;
|
public MessagesGridViewAdapter(Activity activity, ArrayList<Msg> listMessages) {
|
||||||
//private int[] colors = new int[] { Color.parseColor("#FFFFFF"), Color.parseColor("#D2E4FC") };
|
|
||||||
|
|
||||||
|
|
||||||
public MessagesGridViewAdapter(Activity activity, ArrayList<Msg> listMessages, Context context) {
|
|
||||||
super();
|
super();
|
||||||
this.activity = activity;
|
this.activity = activity;
|
||||||
this.listMessages = listMessages;
|
this.listMessages = listMessages;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getCount() {
|
public int getCount() {
|
||||||
return listMessages.size();
|
return listMessages.size();
|
||||||
@ -47,86 +42,58 @@ public class MessagesGridViewAdapter extends BaseAdapter
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class ViewHolder
|
public static class ViewHolder {
|
||||||
{
|
|
||||||
public ImageView imgViewContact;
|
public ImageView imgViewContact;
|
||||||
public TextView txtViewContact;
|
public TextView txtViewContact;
|
||||||
public TextView txtViewDateTime;
|
public TextView txtViewDateTime;
|
||||||
public TextView txtViewLastMsg;
|
public TextView txtViewLastMsg;
|
||||||
public LinearLayout layoutMessage;
|
public LinearLayout layoutMessage;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public View getView(int position, View convertView, ViewGroup parent) {
|
public View getView(int position, View convertView, ViewGroup parent) {
|
||||||
ViewHolder view;
|
ViewHolder view;
|
||||||
LayoutInflater inflator = activity.getLayoutInflater();
|
LayoutInflater inflator = activity.getLayoutInflater();
|
||||||
|
|
||||||
if(convertView==null)
|
if (convertView == null) {
|
||||||
{
|
|
||||||
view = new ViewHolder();
|
view = new ViewHolder();
|
||||||
convertView = inflator.inflate(R.layout.row_message, null);
|
convertView = inflator.inflate(R.layout.row_message, null);
|
||||||
|
|
||||||
view.imgViewContact = (ImageView) convertView.findViewById(R.id.imageViewContact);
|
view.imgViewContact = convertView.findViewById(R.id.imageViewContact);
|
||||||
view.txtViewContact = (TextView) convertView.findViewById(R.id.textViewContact);
|
view.txtViewContact = convertView.findViewById(R.id.textViewContact);
|
||||||
view.txtViewDateTime = (TextView) convertView.findViewById(R.id.textViewLastDate);
|
view.txtViewDateTime = convertView.findViewById(R.id.textViewLastDate);
|
||||||
view.txtViewLastMsg = (TextView) convertView.findViewById(R.id.textViewLastMsg);
|
view.txtViewLastMsg = convertView.findViewById(R.id.textViewLastMsg);
|
||||||
view.layoutMessage = (LinearLayout) convertView.findViewById(R.id.layoutMessage);
|
view.layoutMessage = convertView.findViewById(R.id.layoutMessage);
|
||||||
|
|
||||||
convertView.setTag(view);
|
convertView.setTag(view);
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
view = (ViewHolder) convertView.getTag();
|
view = (ViewHolder) convertView.getTag();
|
||||||
}
|
}
|
||||||
|
|
||||||
try
|
try {
|
||||||
{
|
|
||||||
view.imgViewContact.setImageResource(listMessages.get(position).from.getLargeIcon());
|
view.imgViewContact.setImageResource(listMessages.get(position).from.getLargeIcon());
|
||||||
//view.imgViewContact.setImageResource(R.drawable.peopleblue);
|
view.txtViewContact.setText(String.format("%s :", listMessages.get(position).from.name));
|
||||||
view.txtViewContact.setText(listMessages.get(position).from.name+ " :");
|
if (listMessages.get(position).message.length() > 25)
|
||||||
if(listMessages.get(position).message.length() > 25)
|
view.txtViewLastMsg.setText(String.format("%s...", listMessages.get(position).message.substring(0, 25)));
|
||||||
view.txtViewLastMsg.setText(listMessages.get(position).message.substring(0, 25) + "...");
|
|
||||||
else
|
else
|
||||||
view.txtViewLastMsg.setText(listMessages.get(position).message);
|
view.txtViewLastMsg.setText(listMessages.get(position).message);
|
||||||
|
|
||||||
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
|
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
|
||||||
Calendar calendar = Calendar.getInstance();
|
Calendar calendar = Calendar.getInstance();
|
||||||
calendar.set(Calendar.HOUR_OF_DAY,0);
|
calendar.set(Calendar.HOUR_OF_DAY, 0);
|
||||||
calendar.set(Calendar.MINUTE, 0);
|
calendar.set(Calendar.MINUTE, 0);
|
||||||
calendar.set(Calendar.SECOND, 0);
|
calendar.set(Calendar.SECOND, 0);
|
||||||
calendar.set(Calendar.MILLISECOND, 0);
|
calendar.set(Calendar.MILLISECOND, 0);
|
||||||
if(listMessages.get(position).received.after(calendar.getTime()))
|
if (listMessages.get(position).received.after(calendar.getTime()))
|
||||||
sdf = new SimpleDateFormat("HH:mm:ss");
|
sdf = new SimpleDateFormat("HH:mm:ss");
|
||||||
else
|
else
|
||||||
sdf = new SimpleDateFormat("MMM-dd HH:mm");
|
sdf = new SimpleDateFormat("MMM-dd HH:mm");
|
||||||
|
|
||||||
view.txtViewDateTime.setText(sdf.format(listMessages.get(position).received));
|
view.txtViewDateTime.setText(sdf.format(listMessages.get(position).received));
|
||||||
}
|
} catch (Exception ex) {
|
||||||
catch(Exception ex)
|
|
||||||
{
|
|
||||||
SM.Exception(ex.toString());
|
SM.Exception(ex.toString());
|
||||||
}
|
}
|
||||||
return convertView;
|
return convertView;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getIcon(int user_type, String username)
|
|
||||||
{
|
|
||||||
// if request was send by MessagesActivity -> Spinner
|
|
||||||
if(user_type == -1)
|
|
||||||
{
|
|
||||||
// get unit_type for selected username
|
|
||||||
for (Msg mes: listMessages)
|
|
||||||
{
|
|
||||||
// if user is selected
|
|
||||||
if(mes.from.name.equals(username))
|
|
||||||
{
|
|
||||||
user_type = (int) mes.from.driver_id; // save user_type
|
|
||||||
|
|
||||||
return mes.from.getLargeIcon();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,215 +0,0 @@
|
|||||||
package com.safemobile.adapters;
|
|
||||||
|
|
||||||
import java.text.SimpleDateFormat;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Calendar;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.Hashtable;
|
|
||||||
import java.util.Locale;
|
|
||||||
|
|
||||||
import android.app.Activity;
|
|
||||||
import android.content.Context;
|
|
||||||
import android.view.LayoutInflater;
|
|
||||||
import android.view.View;
|
|
||||||
import android.view.ViewGroup;
|
|
||||||
import android.widget.BaseAdapter;
|
|
||||||
import android.widget.ImageView;
|
|
||||||
import android.widget.LinearLayout;
|
|
||||||
import android.widget.TextView;
|
|
||||||
|
|
||||||
import com.safemobile.lib.R;
|
|
||||||
import com.safemobile.lib.SM;
|
|
||||||
import com.safemobile.libpad.PadTextMessage;
|
|
||||||
|
|
||||||
public class PadConversationGridViewAdapter extends BaseAdapter
|
|
||||||
{
|
|
||||||
private ArrayList<PadTextMessage> listMessages;
|
|
||||||
private Activity activity;
|
|
||||||
//public String time;
|
|
||||||
private ArrayList<Boolean> outgoingPositions = new ArrayList<Boolean>();
|
|
||||||
private ArrayList<Boolean> ackPositions = new ArrayList<Boolean>();
|
|
||||||
private Hashtable<Integer, View> hash = new Hashtable<Integer, View>();
|
|
||||||
|
|
||||||
|
|
||||||
public PadConversationGridViewAdapter(Activity activity, ArrayList<PadTextMessage> listMessages, Context context, ArrayList<Boolean> outgoingPositions, ArrayList<Boolean> ackPositions) {
|
|
||||||
this.activity = activity;
|
|
||||||
this.listMessages = listMessages;
|
|
||||||
this.outgoingPositions = outgoingPositions;
|
|
||||||
this.ackPositions = ackPositions;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getCount() {
|
|
||||||
return listMessages.size();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public PadTextMessage getItem(int position) {
|
|
||||||
return listMessages.get(position);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public long getItemId(int position) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** return the list of messages in the adapter
|
|
||||||
* @return an ArrayList of PadTextMessages
|
|
||||||
*/
|
|
||||||
public ArrayList<PadTextMessage> getMessages() {
|
|
||||||
return listMessages;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class ViewHolder
|
|
||||||
{
|
|
||||||
public ImageView imgViewContact;
|
|
||||||
public TextView txtViewMsg;
|
|
||||||
public TextView txtViewDateTime;
|
|
||||||
public ImageView imgViewReceivedContact;
|
|
||||||
public TextView txtViewReceivedMsg;
|
|
||||||
public TextView txtViewReceivedDateTime;
|
|
||||||
public ImageView imageAck;
|
|
||||||
public TextView textViewNotACK;
|
|
||||||
public LinearLayout layoutSend;
|
|
||||||
public LinearLayout layoutReceived;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public View getView(int position, View convertView, ViewGroup parent) {
|
|
||||||
ViewHolder view;
|
|
||||||
LayoutInflater inflator = activity.getLayoutInflater();
|
|
||||||
|
|
||||||
if(convertView==null)
|
|
||||||
{
|
|
||||||
view = new ViewHolder();
|
|
||||||
convertView = inflator.inflate(R.layout.row_conversation, null);
|
|
||||||
|
|
||||||
view.imgViewContact = (ImageView) convertView.findViewById(R.id.imageViewSenderIco);
|
|
||||||
view.txtViewMsg = (TextView) convertView.findViewById(R.id.textViewSendMsg);
|
|
||||||
view.txtViewDateTime = (TextView) convertView.findViewById(R.id.textViewSendDate);
|
|
||||||
view.imgViewReceivedContact = (ImageView) convertView.findViewById(R.id.imageViewReceivedIco);
|
|
||||||
view.txtViewReceivedMsg = (TextView) convertView.findViewById(R.id.textViewReceivedMsg);
|
|
||||||
view.txtViewReceivedDateTime = (TextView) convertView.findViewById(R.id.textViewReceivedDate);
|
|
||||||
view.layoutSend = (LinearLayout) convertView.findViewById(R.id.layoutSend);
|
|
||||||
view.layoutReceived = (LinearLayout) convertView.findViewById(R.id.layoutReceived);
|
|
||||||
view.textViewNotACK = (TextView) convertView.findViewById(R.id.textViewNotACKSendMsg);
|
|
||||||
view.imageAck = (ImageView) convertView.findViewById(R.id.imageAck);
|
|
||||||
|
|
||||||
convertView.setTag(view);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
view = (ViewHolder) convertView.getTag();
|
|
||||||
}
|
|
||||||
try
|
|
||||||
{
|
|
||||||
hash.put(position, convertView);
|
|
||||||
|
|
||||||
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm MMM-dd", Locale.getDefault());
|
|
||||||
Calendar calendar = Calendar.getInstance();
|
|
||||||
calendar.set(Calendar.HOUR_OF_DAY,0);
|
|
||||||
calendar.set(Calendar.MINUTE, 0);
|
|
||||||
calendar.set(Calendar.SECOND, 0);
|
|
||||||
calendar.set(Calendar.MILLISECOND, 0);
|
|
||||||
|
|
||||||
Date date = new Date(listMessages.get(position).timeGMT * 1000);
|
|
||||||
|
|
||||||
if(date.after(calendar.getTime()))
|
|
||||||
sdf = new SimpleDateFormat("HH:mm:ss", Locale.getDefault());
|
|
||||||
else
|
|
||||||
sdf = new SimpleDateFormat("HH:mm MMM-dd", Locale.getDefault());
|
|
||||||
|
|
||||||
// set gmt time
|
|
||||||
//sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
|
|
||||||
|
|
||||||
//view.imgViewContact.setImageResource(getIcon(listMessages.get(position).from.user_type));
|
|
||||||
view.imgViewContact.setImageResource(R.drawable.peoplegreen_large);
|
|
||||||
view.txtViewMsg.setText(listMessages.get(position).message);
|
|
||||||
view.txtViewDateTime.setText(sdf.format(date));
|
|
||||||
//view.imgViewReceivedContact.setImageResource(getIcon(listMessages.get(position).from.user_type));
|
|
||||||
view.imgViewReceivedContact.setImageResource(R.drawable.peopleblue_large);
|
|
||||||
view.txtViewReceivedMsg.setText(listMessages.get(position).message);
|
|
||||||
|
|
||||||
view.txtViewReceivedDateTime.setText(sdf.format(date));
|
|
||||||
|
|
||||||
if(ackPositions.size() > 0)
|
|
||||||
switch(ackPositions.get(position) ? 1: 0) {
|
|
||||||
case 0:
|
|
||||||
// show not ack
|
|
||||||
view.textViewNotACK.setVisibility(View.VISIBLE);
|
|
||||||
view.imageAck.setVisibility(View.VISIBLE);
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
// show not ack
|
|
||||||
view.textViewNotACK.setVisibility(View.INVISIBLE);
|
|
||||||
view.imageAck.setVisibility(View.INVISIBLE);
|
|
||||||
}
|
|
||||||
|
|
||||||
switch(outgoingPositions.get(position) ? 1 : 0) {
|
|
||||||
case 1:
|
|
||||||
view.layoutReceived.setVisibility(View.GONE);
|
|
||||||
view.layoutSend.setVisibility(View.VISIBLE);
|
|
||||||
break;
|
|
||||||
case 0:
|
|
||||||
view.layoutReceived.setVisibility(View.VISIBLE);
|
|
||||||
view.layoutSend.setVisibility(View.GONE);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch(Exception ex)
|
|
||||||
{
|
|
||||||
SM.Exception(ex.toString());
|
|
||||||
}
|
|
||||||
return convertView;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
public void setACK(String seqID)
|
|
||||||
{
|
|
||||||
int position = -1, i=0;
|
|
||||||
|
|
||||||
for(Msg msg: listMessages)
|
|
||||||
{
|
|
||||||
if(msg.seqID.equals(seqID))
|
|
||||||
position = i;
|
|
||||||
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
|
|
||||||
ackPositions.remove(position);
|
|
||||||
ackPositions.add(position, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void changeView(String seqID)
|
|
||||||
{
|
|
||||||
int position = -1, i=0;
|
|
||||||
|
|
||||||
for(Msg msg: listMessages)
|
|
||||||
{
|
|
||||||
if(msg.seqID.equals(seqID))
|
|
||||||
position = i;
|
|
||||||
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(position != -1 && hash.size() > position)
|
|
||||||
{
|
|
||||||
SM.Debug("POSITON : " + position);
|
|
||||||
View con = hash.get(position);
|
|
||||||
ViewHolder view = (ViewHolder) con.getTag();
|
|
||||||
|
|
||||||
switch(ackPositions.get(position) ? 1 : 0)
|
|
||||||
{
|
|
||||||
case 1:
|
|
||||||
view.imageAck.setVisibility(View.INVISIBLE);
|
|
||||||
view.textViewNotACK.setVisibility(View.INVISIBLE);
|
|
||||||
break;
|
|
||||||
case 0:
|
|
||||||
view.imageAck.setVisibility(View.VISIBLE);
|
|
||||||
view.textViewNotACK.setVisibility(View.VISIBLE);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
|
@ -1,13 +1,14 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="fill_parent"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_height="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:orientation="vertical"
|
android:layout_height="fill_parent"
|
||||||
android:background="#ffffff"
|
android:orientation="vertical"
|
||||||
android:paddingTop="5dp"
|
android:background="#ffffff"
|
||||||
android:paddingBottom="5dp">
|
android:paddingTop="5dp"
|
||||||
<LinearLayout
|
android:paddingBottom="5dp">
|
||||||
android:id="@+id/layoutSend"
|
<LinearLayout
|
||||||
|
android:id="@+id/layoutSend"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:paddingRight="13dp"
|
android:paddingRight="13dp"
|
||||||
@ -19,147 +20,151 @@
|
|||||||
android:background="#ffffff"
|
android:background="#ffffff"
|
||||||
android:layout_marginLeft="5dp"
|
android:layout_marginLeft="5dp"
|
||||||
android:layout_weight="0">
|
android:layout_weight="0">
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/imageViewSenderIco"
|
android:id="@+id/imageViewSenderIco"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:src="@drawable/ambulance_large"
|
android:src="@drawable/ambulance_large"
|
||||||
android:adjustViewBounds="true"
|
android:adjustViewBounds="true"
|
||||||
android:scaleType="center"
|
android:scaleType="center"
|
||||||
android:background="#ffffff"
|
android:background="#ffffff"
|
||||||
android:layout_margin="3dp"
|
android:layout_margin="3dp"
|
||||||
android:layout_gravity="top"
|
android:layout_gravity="top"
|
||||||
android:layout_weight="0" />
|
android:layout_weight="0" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginLeft="10dp"
|
android:layout_marginLeft="10dp"
|
||||||
android:layout_marginRight="10dp"
|
android:layout_marginRight="10dp"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
android:background="@layout/row_conversation_style_send"
|
android:background="@layout/row_conversation_style_send"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:layout_weight="1" >
|
android:layout_weight="1" >
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textViewSendMsg"
|
android:id="@+id/textViewSendMsg"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Medium Text"
|
android:text="Medium Text"
|
||||||
android:textColor="#000000"
|
android:textColor="#000000"
|
||||||
android:textSize="16dp" />
|
android:textSize="16dp" />
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content">
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/imageAckSendMsg"
|
android:id="@+id/imageAck"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:adjustViewBounds="true"
|
android:adjustViewBounds="true"
|
||||||
android:scaleType="center"
|
android:scaleType="center"
|
||||||
android:paddingTop="2dp"
|
android:paddingTop="2dp"
|
||||||
android:src="@drawable/exclamation_small"
|
android:src="@drawable/exclamation_small"
|
||||||
android:layout_weight="0"
|
android:layout_weight="0"
|
||||||
android:visibility="invisible"/>
|
android:visibility="invisible"
|
||||||
<TextView
|
tools:ignore="DuplicateIds" />
|
||||||
android:id="@+id/textViewNotACKSendMsg"
|
<TextView
|
||||||
android:layout_width="fill_parent"
|
android:id="@+id/textViewNotACK"
|
||||||
android:layout_height="wrap_content"
|
android:layout_width="fill_parent"
|
||||||
android:text="@string/notAck"
|
android:layout_height="wrap_content"
|
||||||
android:textColor="#000000"
|
android:text="@string/notAck"
|
||||||
android:textSize="13dp"
|
android:textColor="#000000"
|
||||||
android:layout_toRightOf="@+id/imageAck"
|
android:textSize="13dp"
|
||||||
android:visibility="invisible" />
|
android:layout_toRightOf="@+id/imageAck"
|
||||||
<TextView
|
android:visibility="invisible"
|
||||||
android:id="@+id/textViewSendDate"
|
tools:ignore="DuplicateIds" />
|
||||||
android:layout_width="wrap_content"
|
<TextView
|
||||||
android:layout_height="wrap_content"
|
android:id="@+id/textViewSendDate"
|
||||||
android:layout_gravity="right"
|
android:layout_width="wrap_content"
|
||||||
android:text="Small Text"
|
android:layout_height="wrap_content"
|
||||||
android:textColor="#4c4c4c"
|
android:layout_gravity="right"
|
||||||
android:textSize="13dp"
|
android:text="Small Text"
|
||||||
android:layout_alignParentRight="true"/>
|
android:textColor="#4c4c4c"
|
||||||
</RelativeLayout>
|
android:textSize="13dp"
|
||||||
</LinearLayout>
|
android:layout_alignParentRight="true"/>
|
||||||
|
</RelativeLayout>
|
||||||
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:paddingLeft="13dp"
|
android:paddingLeft="13dp"
|
||||||
android:layout_weight="0"
|
android:layout_weight="0"
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:id="@+id/layoutReceived">
|
android:id="@+id/layoutReceived">
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginLeft="10dp"
|
android:layout_marginLeft="10dp"
|
||||||
android:layout_marginRight="10dp"
|
android:layout_marginRight="10dp"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
android:background="@layout/row_conversation_style_rec"
|
android:background="@layout/row_conversation_style_rec"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:layout_weight="1" >
|
android:layout_weight="1" >
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/textViewReceivedMsg"
|
android:id="@+id/textViewReceivedMsg"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Medium Text"
|
android:text="Medium Text"
|
||||||
android:textColor="#000000"
|
android:textColor="#000000"
|
||||||
android:textSize="16dp" />
|
android:textSize="16dp" />
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content">
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/imageAckReceiveMsg"
|
android:id="@+id/imageAck"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:adjustViewBounds="true"
|
android:adjustViewBounds="true"
|
||||||
android:scaleType="center"
|
android:scaleType="center"
|
||||||
android:paddingTop="2dp"
|
android:paddingTop="2dp"
|
||||||
android:src="@drawable/exclamation_small"
|
android:src="@drawable/exclamation_small"
|
||||||
android:layout_weight="0"
|
android:layout_weight="0"
|
||||||
android:visibility="invisible"/>
|
android:visibility="invisible"
|
||||||
<TextView
|
tools:ignore="DuplicateIds" />
|
||||||
android:id="@+id/textViewNotACKReceiveMsg"
|
<TextView
|
||||||
android:layout_width="fill_parent"
|
android:id="@+id/textViewNotACK"
|
||||||
android:layout_height="wrap_content"
|
android:layout_width="fill_parent"
|
||||||
android:text="@string/notAck"
|
android:layout_height="wrap_content"
|
||||||
android:textColor="#000000"
|
android:text="@string/notAck"
|
||||||
android:textSize="13dp"
|
android:textColor="#000000"
|
||||||
android:layout_toRightOf="@+id/imageAck"
|
android:textSize="13dp"
|
||||||
android:visibility="invisible"/>
|
android:layout_toRightOf="@+id/imageAck"
|
||||||
<TextView
|
android:visibility="invisible"
|
||||||
android:id="@+id/textViewReceivedDate"
|
tools:ignore="DuplicateIds" />
|
||||||
android:layout_width="wrap_content"
|
<TextView
|
||||||
android:layout_height="wrap_content"
|
android:id="@+id/textViewReceivedDate"
|
||||||
android:layout_gravity="right"
|
android:layout_width="wrap_content"
|
||||||
android:text="Small Text"
|
android:layout_height="wrap_content"
|
||||||
android:textColor="#4c4c4c"
|
android:layout_gravity="right"
|
||||||
android:textSize="13dp"
|
android:text="Small Text"
|
||||||
android:layout_alignParentRight="true"/>
|
android:textColor="#4c4c4c"
|
||||||
</RelativeLayout>
|
android:textSize="13dp"
|
||||||
</LinearLayout>
|
android:layout_alignParentRight="true"/>
|
||||||
<LinearLayout
|
</RelativeLayout>
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:background="#ffffff"
|
android:background="#ffffff"
|
||||||
android:layout_marginRight="5dp"
|
android:layout_marginRight="5dp"
|
||||||
android:layout_weight="0">
|
android:layout_weight="0">
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/imageViewReceivedIco"
|
android:id="@+id/imageViewReceivedIco"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:adjustViewBounds="true"
|
android:adjustViewBounds="true"
|
||||||
android:scaleType="center"
|
android:scaleType="center"
|
||||||
android:src="@drawable/error"
|
android:src="@drawable/error"
|
||||||
android:background="#ffffff"
|
android:background="#ffffff"
|
||||||
android:layout_margin="3dp"
|
android:layout_margin="3dp"
|
||||||
android:layout_weight="0"
|
android:layout_weight="0"
|
||||||
android:layout_gravity="top"
|
android:layout_gravity="top"
|
||||||
/>
|
/>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
File diff suppressed because it is too large
Load Diff
@ -405,7 +405,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
tabHost.setCurrentTabByTag("Text");
|
tabHost.setCurrentTabByTag("Text");
|
||||||
AppParams.crtTab = AppParams.Tabs.message;
|
AppParams.crtTab = AppParams.Tabs.message;
|
||||||
|
|
||||||
if (AppParams.DEMO && messageActivity.allVehicle.size()== 0) {
|
if (AppParams.DEMO && messageActivity.getAllVehicle().size()== 0) {
|
||||||
// select button
|
// select button
|
||||||
buttonText.setSelected(true);
|
buttonText.setSelected(true);
|
||||||
// deselect other buttons
|
// deselect other buttons
|
||||||
@ -419,9 +419,9 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
tabHost.setCurrentTabByTag("Text");
|
tabHost.setCurrentTabByTag("Text");
|
||||||
AppParams.crtTab = AppParams.Tabs.message;
|
AppParams.crtTab = AppParams.Tabs.message;
|
||||||
|
|
||||||
if (AppParams.DEMO && messageActivity.allVehicle.size()== 0) {
|
if (AppParams.DEMO && messageActivity.getAllVehicle().size()== 0) {
|
||||||
messageActivity.UpdateVehs(getAllVehicle());
|
messageActivity.updateVehicles(getAllVehicle());
|
||||||
messageActivity.UpdateSMS(listSMS);
|
messageActivity.updateSMS(listSMS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -674,8 +674,8 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
//list for SMS
|
//list for SMS
|
||||||
if(currentActivity instanceof MessagesActivity)
|
if(currentActivity instanceof MessagesActivity)
|
||||||
{
|
{
|
||||||
// run update showSMS4unit(int sc_id) form MessageActivity
|
// run update showSMS4unit(int scId) form MessageActivity
|
||||||
((MessagesActivity)currentActivity).showSMS4unit(getVehicle4Imei(imei).sc_id);
|
((MessagesActivity)currentActivity).showSMS4unit(getVehicle4Imei(imei).scId);
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
@ -821,9 +821,9 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
tabHost.setCurrentTabByTag("Text");
|
tabHost.setCurrentTabByTag("Text");
|
||||||
AppParams.crtTab = AppParams.Tabs.message;
|
AppParams.crtTab = AppParams.Tabs.message;
|
||||||
|
|
||||||
messageActivity.sc_id = getVehicle4Imei(getImei()).sc_id;
|
messageActivity.setScId(getVehicle4Imei(getImei()).sc_id);
|
||||||
messageActivity.LASTMESSAGES = false;
|
messageActivity.LASTMESSAGES = false;
|
||||||
messageActivity.GetLastSMS();
|
messageActivity.getLastSMS();
|
||||||
|
|
||||||
// disable notification
|
// disable notification
|
||||||
if(mNotificationManager!=null)
|
if(mNotificationManager!=null)
|
||||||
@ -1019,7 +1019,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
if(radioActivity!=null)
|
if(radioActivity!=null)
|
||||||
radioActivity.onCreate(radioActivity.savedInstanceState);
|
radioActivity.onCreate(radioActivity.savedInstanceState);
|
||||||
if(messageActivity!=null)
|
if(messageActivity!=null)
|
||||||
messageActivity.onCreate(messageActivity.savedInstanceState);
|
messageActivity.onCreate(messageActivity.getSavedInstanceState());
|
||||||
if(recordingsActivity!=null)
|
if(recordingsActivity!=null)
|
||||||
recordingsActivity.onCreate(recordingsActivity.savedInstanceState);
|
recordingsActivity.onCreate(recordingsActivity.savedInstanceState);
|
||||||
if(alarmActivity!=null)
|
if(alarmActivity!=null)
|
||||||
@ -1319,9 +1319,9 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
//list for SMS
|
//list for SMS
|
||||||
if(AppParams.crtTab == AppParams.Tabs.message)
|
if(AppParams.crtTab == AppParams.Tabs.message)
|
||||||
{
|
{
|
||||||
//SM.Debug("currentActivity instanceof MessagesActivity - NewSMS");
|
//SM.Debug("currentActivity instanceof MessagesActivity - newSMS");
|
||||||
if(messageActivity != null)
|
if(messageActivity != null)
|
||||||
messageActivity.UpdateSMS(sms.smsList);
|
messageActivity.updateSMS(sms.smsList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(Exception ex)
|
catch(Exception ex)
|
||||||
@ -1370,7 +1370,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
{
|
{
|
||||||
SM.Debug("currentActivity instanceof MessagesActivity");
|
SM.Debug("currentActivity instanceof MessagesActivity");
|
||||||
if(messageActivity != null)
|
if(messageActivity != null)
|
||||||
messageActivity.UpdateVehs(vMSG.vehList);
|
messageActivity.updateVehicles(vMSG.vehList);
|
||||||
}
|
}
|
||||||
setAllVehicle(vMSG.vehList);
|
setAllVehicle(vMSG.vehList);
|
||||||
}
|
}
|
||||||
@ -1387,7 +1387,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
{
|
{
|
||||||
//SM.Debug("currentActivity instanceof MessagesActivity");
|
//SM.Debug("currentActivity instanceof MessagesActivity");
|
||||||
if(messageActivity != null)
|
if(messageActivity != null)
|
||||||
messageActivity.UpdateSMS(sms.smsList);
|
messageActivity.updateSMS(sms.smsList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
@ -1433,7 +1433,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
SM.Debug("Got smsComfirm msg.data:" + msg.data);
|
SM.Debug("Got smsComfirm msg.data:" + msg.data);
|
||||||
|
|
||||||
if (messageActivity != null)
|
if (messageActivity != null)
|
||||||
messageActivity.ConfirmSMS(sms.data, msg.seqID);
|
messageActivity.confirmSMS(sms.data, msg.seqID);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -1466,8 +1466,8 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
});
|
});
|
||||||
//list for SMS
|
//list for SMS
|
||||||
if(AppParams.crtTab == AppParams.Tabs.message && messageActivity!= null) {
|
if(AppParams.crtTab == AppParams.Tabs.message && messageActivity!= null) {
|
||||||
SM.Debug("currentActivity instanceof MessagesActivity - NewSMS | " + tempArr[0] + " | " + tempArr[1]);
|
SM.Debug("currentActivity instanceof MessagesActivity - newSMS | " + tempArr[0] + " | " + tempArr[1]);
|
||||||
messageActivity.NewSMS(tempArr[0], tempArr[1], time);
|
messageActivity.newSMS(tempArr[0], tempArr[1], time);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1858,7 +1858,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
//list for SMS
|
//list for SMS
|
||||||
if(AppParams.crtTab == AppParams.Tabs.alarms)
|
if(AppParams.crtTab == AppParams.Tabs.alarms)
|
||||||
{
|
{
|
||||||
SM.Debug("currentActivity instanceof AlarmActivity - NewSMS | " + tempArr[0] + " | " + tempArr[1]);
|
SM.Debug("currentActivity instanceof AlarmActivity - newSMS | " + tempArr[0] + " | " + tempArr[1]);
|
||||||
getAlarms(AppParams.USERID);
|
getAlarms(AppParams.USERID);
|
||||||
}
|
}
|
||||||
// if tab is not TextTab
|
// if tab is not TextTab
|
||||||
@ -2315,19 +2315,19 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void optionForUnit(int radioCode, int opCode, int sc_id, int value)
|
public void optionForUnit(int radioCode, int opCode, int scId, int value)
|
||||||
{
|
{
|
||||||
boolean res = tcp.Write("0.0", "#"+radioCode+"#"+opCode+"#" + sc_id+"#" +value + "#");
|
boolean res = tcp.Write("0.0", "#"+radioCode+"#"+opCode+"#" + scId+"#" +value + "#");
|
||||||
if(res){
|
if(res){
|
||||||
SM.Debug("Message (optionForUnit) sent to app server radioCode:"+radioCode+ " opCode:"+opCode+ " sc_id:"+sc_id+ " value:"+value);
|
SM.Debug("Message (optionForUnit) sent to app server radioCode:"+radioCode+ " opCode:"+opCode+ " scId:"+scId+ " value:"+value);
|
||||||
}else{
|
}else{
|
||||||
SM.Debug("Could not send message(optionForUnit)!!");
|
SM.Debug("Could not send message(optionForUnit)!!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void getSMS4unit(int sc_id, long timeGMT)
|
public void getSMS4unit(int scId, long timeGMT)
|
||||||
{
|
{
|
||||||
boolean res = tcp.Write("0.0", "#22#"+sc_id+"#" +timeGMT+"#");
|
boolean res = tcp.Write("0.0", "#22#"+scId+"#" +timeGMT+"#");
|
||||||
if(res){
|
if(res){
|
||||||
SM.Debug("Message (getLastSMS) sent to app server");
|
SM.Debug("Message (getLastSMS) sent to app server");
|
||||||
}else{
|
}else{
|
||||||
@ -2345,11 +2345,11 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SendSMS(String seqID,int sc_id, String txt)
|
public void SendSMS(String seqID,int scId, String txt)
|
||||||
{
|
{
|
||||||
boolean res = tcp.Write(seqID, "#24#" + AppParams.USERID + "#" + sc_id + "#" + txt + "#");
|
boolean res = tcp.Write(seqID, "#24#" + AppParams.USERID + "#" + scId + "#" + txt + "#");
|
||||||
if(res){
|
if(res){
|
||||||
SM.Debug("Message (SendSMS) sent to app server sc_id:"+sc_id+ " txt:"+txt);
|
SM.Debug("Message (SendSMS) sent to app server scId:"+scId+ " txt:"+txt);
|
||||||
}else{
|
}else{
|
||||||
SM.Debug("Could not send message(getLastSMS)!!");
|
SM.Debug("Could not send message(getLastSMS)!!");
|
||||||
}
|
}
|
||||||
@ -2385,10 +2385,10 @@ public class TabLayoutActivity extends AbstractSDParentActivity{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void getHistoryPos(int sc_id, long timeGMTStart, long timeGMTStop)
|
public void getHistoryPos(int scId, long timeGMTStart, long timeGMTStop)
|
||||||
{
|
{
|
||||||
HistSeqID = "1."+Integer.toString((int) (System.currentTimeMillis() / 1000L));
|
HistSeqID = "1."+Integer.toString((int) (System.currentTimeMillis() / 1000L));
|
||||||
boolean res = tcp.Write(HistSeqID,"#26#"+sc_id+"#"+timeGMTStart+"#"+timeGMTStop+"#");
|
boolean res = tcp.Write(HistSeqID,"#26#"+scId+"#"+timeGMTStart+"#"+timeGMTStop+"#");
|
||||||
if(res){
|
if(res){
|
||||||
SM.Debug("Message (getHistoryPos) sent to app server");
|
SM.Debug("Message (getHistoryPos) sent to app server");
|
||||||
}else{
|
}else{
|
||||||
|
@ -1,243 +1,244 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="fill_parent" android:weightSum="1"
|
android:layout_height="fill_parent" android:weightSum="1"
|
||||||
android:id="@+id/layoutMain"
|
android:id="@+id/layoutMain"
|
||||||
style="?bg">
|
style="?bg">
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:gravity="left"
|
|
||||||
android:layout_weight="0"
|
|
||||||
android:orientation="horizontal"
|
|
||||||
style="?header"
|
|
||||||
android:id="@+id/layoutHeader">
|
|
||||||
|
|
||||||
<ImageView
|
<LinearLayout
|
||||||
android:id="@+id/imageViewMsg"
|
android:layout_width="fill_parent"
|
||||||
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_height="fill_parent"
|
android:gravity="left"
|
||||||
android:src="@drawable/message"
|
android:layout_weight="0"
|
||||||
android:paddingLeft="0dp"
|
android:orientation="horizontal"
|
||||||
android:layout_margin="3dp"
|
style="?header"
|
||||||
android:layout_weight="0" />
|
android:id="@+id/layoutHeader">
|
||||||
<TextView
|
|
||||||
android:id="@+id/textView1"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:text="@string/textMessaging"
|
|
||||||
android:layout_marginLeft="5dp"
|
|
||||||
android:textStyle="bold"
|
|
||||||
android:paddingTop="7dp"
|
|
||||||
android:textColor="#FFFFFF"
|
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
||||||
android:layout_weight="0"/>
|
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/imageViewSeparator"
|
android:id="@+id/imageViewMsg"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="fill_parent"
|
android:layout_height="fill_parent"
|
||||||
android:layout_gravity="center_vertical"
|
android:src="@drawable/message"
|
||||||
android:src="@drawable/separator_white"
|
android:paddingLeft="0dp"
|
||||||
android:layout_margin="2dp"
|
android:layout_margin="3dp"
|
||||||
android:layout_weight="0"
|
android:layout_weight="0" />
|
||||||
android:visibility="invisible"
|
<TextView
|
||||||
android:focusable="false" />
|
android:id="@+id/textView1"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:text="@string/textMessaging"
|
||||||
|
android:layout_marginLeft="5dp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:paddingTop="7dp"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
|
android:layout_weight="0"/>
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageViewSeparator"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:layout_gravity="center_vertical"
|
||||||
|
android:src="@drawable/separator_white"
|
||||||
|
android:layout_margin="2dp"
|
||||||
|
android:layout_weight="0"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:focusable="false" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageViewDown"
|
||||||
|
android:layout_width="20dp"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:layout_gravity="center_vertical"
|
||||||
|
android:layout_marginBottom="2dp"
|
||||||
|
android:layout_marginTop="2dp"
|
||||||
|
android:focusable="false"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:src="@drawable/arrow_menu_down" />
|
||||||
|
|
||||||
|
<ImageButton
|
||||||
|
android:id="@+id/imageButtonAdd2"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:scaleType="centerInside"
|
||||||
|
android:layout_marginRight="5dp"
|
||||||
|
android:paddingLeft="2dp"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:background="@drawable/addmessage_selector"/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textViewNew"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:text="New"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:paddingTop="7dp"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
|
android:layout_weight="0"
|
||||||
|
android:paddingRight="5dp"
|
||||||
|
android:visibility="gone"/>
|
||||||
|
|
||||||
|
<ImageButton
|
||||||
|
android:id="@+id/imageButtonAdd"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="0"
|
||||||
|
android:scaleType="centerInside"
|
||||||
|
android:layout_marginRight="5dp"
|
||||||
|
android:paddingLeft="2dp"
|
||||||
|
android:background="@drawable/addmessage_selector"/>
|
||||||
|
|
||||||
|
<!-- android:background="@drawable/addmessage_selector" -->
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="left"
|
||||||
|
android:layout_weight="0"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
style="?header"
|
||||||
|
android:id="@+id/layoutHeaderConversation">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:layout_gravity="center_vertical">
|
||||||
|
<ImageButton
|
||||||
|
android:id="@+id/imageButtonBack"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center_vertical"
|
||||||
|
android:layout_marginRight="5dp"
|
||||||
|
android:paddingLeft="2dp"
|
||||||
|
android:background="@drawable/messageback_selector"/>
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:gravity="right|center_vertical"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:paddingBottom="2dp"
|
||||||
|
android:paddingRight="15dp"
|
||||||
|
android:paddingTop="3dp" >
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_gravity="center_vertical"
|
||||||
|
android:layout_weight="0">
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/imageViewDown"
|
android:id="@+id/imageViewSelectedContact"
|
||||||
android:layout_width="20dp"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="fill_parent"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center_vertical"
|
android:src="@drawable/ambulance_large"
|
||||||
android:layout_marginBottom="2dp"
|
android:layout_margin="3dp" />
|
||||||
android:layout_marginTop="2dp"
|
</LinearLayout>
|
||||||
android:focusable="false"
|
<TextView
|
||||||
android:visibility="invisible"
|
android:id="@+id/textViewSelectedContact"
|
||||||
android:src="@drawable/arrow_menu_down" />
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
<ImageButton
|
android:text="Large Text"
|
||||||
android:id="@+id/imageButtonAdd2"
|
android:gravity="center_vertical"
|
||||||
android:layout_width="fill_parent"
|
android:paddingLeft="3dp"
|
||||||
android:layout_height="wrap_content"
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
android:layout_weight="1"
|
android:layout_weight="0"/>
|
||||||
android:scaleType="centerInside"
|
|
||||||
android:layout_marginRight="5dp"
|
|
||||||
android:paddingLeft="2dp"
|
|
||||||
android:visibility="invisible"
|
|
||||||
android:background="@drawable/addmessage_selector"/>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/textViewNew"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:text="New"
|
|
||||||
android:textStyle="bold"
|
|
||||||
android:paddingTop="7dp"
|
|
||||||
android:textColor="#FFFFFF"
|
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
||||||
android:layout_weight="0"
|
|
||||||
android:paddingRight="5dp"
|
|
||||||
android:visibility="gone"/>
|
|
||||||
|
|
||||||
<ImageButton
|
|
||||||
android:id="@+id/imageButtonAdd"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="0"
|
|
||||||
android:scaleType="centerInside"
|
|
||||||
android:layout_marginRight="5dp"
|
|
||||||
android:paddingLeft="2dp"
|
|
||||||
android:background="@drawable/addmessage_selector"/>
|
|
||||||
|
|
||||||
<!-- android:background="@drawable/addmessage_selector" -->
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:gravity="left"
|
|
||||||
android:layout_weight="0"
|
|
||||||
android:orientation="horizontal"
|
|
||||||
style="?header"
|
|
||||||
android:id="@+id/layoutHeaderConversation">
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:layout_gravity="center_vertical">
|
|
||||||
<ImageButton
|
|
||||||
android:id="@+id/imageButtonBack"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="center_vertical"
|
|
||||||
android:layout_marginRight="5dp"
|
|
||||||
android:paddingLeft="2dp"
|
|
||||||
android:background="@drawable/messageback_selector"/>
|
|
||||||
</LinearLayout>
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:layout_gravity="center_horizontal"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:gravity="right|center_vertical"
|
|
||||||
android:orientation="horizontal"
|
|
||||||
android:paddingBottom="2dp"
|
|
||||||
android:paddingRight="15dp"
|
|
||||||
android:paddingTop="3dp" >
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_gravity="center_vertical"
|
|
||||||
android:layout_weight="0">
|
|
||||||
<ImageView
|
|
||||||
android:id="@+id/imageViewSelectedContact"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:src="@drawable/ambulance_large"
|
|
||||||
android:layout_margin="3dp" />
|
|
||||||
</LinearLayout>
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/textViewSelectedContact"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:text="Large Text"
|
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:paddingLeft="3dp"
|
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
||||||
android:layout_weight="0"/>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<!-- android:background="@drawable/addmessage_selector" -->
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:id="@+id/layoutConversations"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<GridView
|
</LinearLayout>
|
||||||
android:id="@+id/gridView1"
|
|
||||||
android:layout_width="fill_parent"
|
<!-- android:background="@drawable/addmessage_selector" -->
|
||||||
android:layout_height="wrap_content"
|
</LinearLayout>
|
||||||
android:background="#999999"
|
|
||||||
android:drawSelectorOnTop="false"
|
<LinearLayout
|
||||||
android:horizontalSpacing="0dp"
|
android:layout_width="fill_parent"
|
||||||
android:numColumns="1"
|
android:layout_height="wrap_content"
|
||||||
android:verticalSpacing="1dp" >
|
android:id="@+id/layoutConversations"
|
||||||
</GridView>
|
android:layout_weight="1"
|
||||||
</LinearLayout>
|
android:orientation="vertical">
|
||||||
|
|
||||||
<LinearLayout
|
<GridView
|
||||||
android:id="@+id/layoutSendMsg"
|
android:id="@+id/gridView1"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:gravity="left"
|
android:background="#999999"
|
||||||
android:layout_weight="0"
|
android:drawSelectorOnTop="false"
|
||||||
android:orientation="horizontal"
|
android:horizontalSpacing="0dp"
|
||||||
style="?header">
|
android:numColumns="1"
|
||||||
<LinearLayout
|
android:verticalSpacing="1dp" >
|
||||||
android:layout_weight="0"
|
</GridView>
|
||||||
android:layout_width="wrap_content"
|
</LinearLayout>
|
||||||
android:layout_height="fill_parent">
|
|
||||||
<TextView
|
<LinearLayout
|
||||||
android:id="@+id/textViewSendMsg"
|
android:id="@+id/layoutSendMsg"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center_vertical"
|
android:gravity="left"
|
||||||
android:text="@string/message"
|
android:layout_weight="0"
|
||||||
android:layout_marginLeft="5dp"
|
android:orientation="horizontal"
|
||||||
android:layout_marginRight="5dp"
|
style="?header">
|
||||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
<LinearLayout
|
||||||
/>
|
android:layout_weight="0"
|
||||||
</LinearLayout>
|
android:layout_width="wrap_content"
|
||||||
<LinearLayout
|
android:layout_height="fill_parent">
|
||||||
android:layout_weight="1"
|
<TextView
|
||||||
android:layout_width="fill_parent"
|
android:id="@+id/textView1"
|
||||||
android:layout_height="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:gravity="center_vertical"
|
android:layout_height="wrap_content"
|
||||||
android:paddingTop="4dp">
|
android:layout_gravity="center_vertical"
|
||||||
<EditText
|
android:text="@string/message"
|
||||||
android:id="@+id/editTextMsg"
|
android:layout_marginLeft="5dp"
|
||||||
android:layout_width="fill_parent"
|
android:layout_marginRight="5dp"
|
||||||
android:layout_height="wrap_content"
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||||
android:layout_gravity="center_vertical"
|
/>
|
||||||
android:gravity="center_vertical"
|
</LinearLayout>
|
||||||
android:inputType="text" >
|
<LinearLayout
|
||||||
</EditText>
|
android:layout_weight="1"
|
||||||
</LinearLayout>
|
android:layout_width="fill_parent"
|
||||||
<LinearLayout
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="0"
|
android:gravity="center_vertical"
|
||||||
android:layout_width="wrap_content"
|
android:paddingTop="4dp">
|
||||||
android:layout_height="wrap_content"
|
<EditText
|
||||||
android:gravity="center_vertical"
|
android:id="@+id/editTextMsg"
|
||||||
android:paddingTop="4dp">
|
android:layout_width="fill_parent"
|
||||||
<ImageView
|
android:layout_height="wrap_content"
|
||||||
android:id="@+id/imageBarcode"
|
android:layout_gravity="center_vertical"
|
||||||
android:layout_width="wrap_content"
|
android:gravity="center_vertical"
|
||||||
android:layout_height="35dp"
|
android:inputType="text"
|
||||||
android:src="@drawable/barcode"
|
android:autofillHints="">
|
||||||
android:paddingTop="2dp"
|
</EditText>
|
||||||
android:layout_margin="3dp" />
|
</LinearLayout>
|
||||||
</LinearLayout>
|
<LinearLayout
|
||||||
<Button
|
android:layout_weight="0"
|
||||||
android:id="@+id/imageButtonSend"
|
android:layout_width="wrap_content"
|
||||||
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:gravity="center_vertical"
|
||||||
android:layout_weight="0"
|
android:paddingTop="4dp">
|
||||||
android:text="@string/send"
|
<ImageView
|
||||||
android:layout_marginRight="5dp"
|
android:id="@+id/imageBarcode"
|
||||||
android:layout_gravity="center"
|
android:layout_width="wrap_content"
|
||||||
android:paddingLeft="6dp"
|
android:layout_height="35dp"
|
||||||
android:textColor="#000000"
|
android:src="@drawable/barcode"
|
||||||
style="?login"
|
android:paddingTop="2dp"
|
||||||
/>
|
android:layout_margin="3dp" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
<Button
|
||||||
|
android:id="@+id/imageButtonSend"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="0"
|
||||||
|
android:text="@string/send"
|
||||||
|
android:layout_marginRight="5dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:paddingLeft="6dp"
|
||||||
|
android:textColor="#000000"
|
||||||
|
style="?login"
|
||||||
|
/>
|
||||||
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
@ -1,240 +1,241 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="fill_parent" android:weightSum="1"
|
android:layout_height="fill_parent" android:weightSum="1"
|
||||||
android:id="@+id/layoutMain"
|
android:id="@+id/layoutMain"
|
||||||
style="?bg">
|
style="?bg">
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:gravity="left"
|
|
||||||
android:layout_weight="0"
|
|
||||||
android:orientation="horizontal"
|
|
||||||
style="?header"
|
|
||||||
android:id="@+id/layoutHeader">
|
|
||||||
|
|
||||||
<ImageView
|
<LinearLayout
|
||||||
android:id="@+id/imageViewMsg"
|
android:layout_width="fill_parent"
|
||||||
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_height="fill_parent"
|
android:gravity="left"
|
||||||
android:src="@drawable/message"
|
android:layout_weight="0"
|
||||||
android:paddingLeft="5dp"
|
android:orientation="horizontal"
|
||||||
android:layout_margin="3dp"
|
style="?header"
|
||||||
android:layout_weight="0" />
|
android:id="@+id/layoutHeader">
|
||||||
<TextView
|
|
||||||
android:id="@+id/textView1"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:text="@string/textMessaging"
|
|
||||||
android:layout_marginLeft="5dp"
|
|
||||||
android:textStyle="bold"
|
|
||||||
android:paddingTop="7dp"
|
|
||||||
android:textColor="#FFFFFF"
|
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
||||||
android:layout_weight="0"/>
|
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/imageViewSeparator"
|
android:id="@+id/imageViewMsg"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="fill_parent"
|
android:layout_height="fill_parent"
|
||||||
android:layout_gravity="center_vertical"
|
android:src="@drawable/message"
|
||||||
android:src="@drawable/separator_white"
|
android:paddingLeft="5dp"
|
||||||
android:layout_margin="2dp"
|
android:layout_margin="3dp"
|
||||||
android:layout_weight="0"
|
android:layout_weight="0" />
|
||||||
android:visibility="invisible"
|
<TextView
|
||||||
android:focusable="false" />
|
android:id="@+id/textView1"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:text="@string/textMessaging"
|
||||||
|
android:layout_marginLeft="5dp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:paddingTop="7dp"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
|
android:layout_weight="0"/>
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageViewSeparator"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:layout_gravity="center_vertical"
|
||||||
|
android:src="@drawable/separator_white"
|
||||||
|
android:layout_margin="2dp"
|
||||||
|
android:layout_weight="0"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:focusable="false" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/imageViewDown"
|
||||||
|
android:layout_width="20dp"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:layout_gravity="center_vertical"
|
||||||
|
android:layout_marginBottom="2dp"
|
||||||
|
android:layout_marginTop="2dp"
|
||||||
|
android:focusable="false"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:src="@drawable/arrow_menu_down" />
|
||||||
|
|
||||||
|
<ImageButton
|
||||||
|
android:id="@+id/imageButtonAdd2"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:scaleType="centerInside"
|
||||||
|
android:layout_marginRight="5dp"
|
||||||
|
android:paddingLeft="2dp"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:background="@drawable/addmessage_selector"/>
|
||||||
|
|
||||||
|
<ImageButton
|
||||||
|
android:id="@+id/imageButtonAdd"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="0"
|
||||||
|
android:scaleType="centerInside"
|
||||||
|
android:layout_marginRight="5dp"
|
||||||
|
android:paddingLeft="2dp"
|
||||||
|
android:background="@drawable/addmessage_selector"/>
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textViewNew"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:text="New"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:paddingTop="7dp"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
|
android:layout_weight="0"
|
||||||
|
android:paddingRight="5dp"
|
||||||
|
android:visibility="gone"/>
|
||||||
|
<!-- android:background="@drawable/addmessage_selector" -->
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="left"
|
||||||
|
android:layout_weight="0"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
style="?header"
|
||||||
|
android:id="@+id/layoutHeaderConversation">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:layout_gravity="center_vertical">
|
||||||
|
<ImageButton
|
||||||
|
android:id="@+id/imageButtonBack"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center_vertical"
|
||||||
|
android:layout_marginRight="5dp"
|
||||||
|
android:paddingLeft="2dp"
|
||||||
|
android:background="@drawable/messageback_selector"/>
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:gravity="right|center_vertical"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:paddingBottom="0dp"
|
||||||
|
android:paddingRight="15dp"
|
||||||
|
android:paddingTop="0dp" >
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_gravity="center_vertical"
|
||||||
|
android:layout_weight="0">
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/imageViewDown"
|
android:id="@+id/imageViewSelectedContact"
|
||||||
android:layout_width="20dp"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="fill_parent"
|
android:layout_height="35dp"
|
||||||
android:layout_gravity="center_vertical"
|
android:src="@drawable/ambulance_large"
|
||||||
android:layout_marginBottom="2dp"
|
android:layout_margin="3dp" />
|
||||||
android:layout_marginTop="2dp"
|
</LinearLayout>
|
||||||
android:focusable="false"
|
<TextView
|
||||||
android:visibility="invisible"
|
android:id="@+id/textViewSelectedContact"
|
||||||
android:src="@drawable/arrow_menu_down" />
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
<ImageButton
|
android:text="Large Text"
|
||||||
android:id="@+id/imageButtonAdd2"
|
android:gravity="center_vertical"
|
||||||
android:layout_width="fill_parent"
|
android:paddingLeft="3dp"
|
||||||
android:layout_height="wrap_content"
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
android:layout_weight="1"
|
android:layout_weight="0"/>
|
||||||
android:scaleType="centerInside"
|
|
||||||
android:layout_marginRight="5dp"
|
|
||||||
android:paddingLeft="2dp"
|
|
||||||
android:visibility="invisible"
|
|
||||||
android:background="@drawable/addmessage_selector"/>
|
|
||||||
|
|
||||||
<ImageButton
|
|
||||||
android:id="@+id/imageButtonAdd"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="0"
|
|
||||||
android:scaleType="centerInside"
|
|
||||||
android:layout_marginRight="5dp"
|
|
||||||
android:paddingLeft="2dp"
|
|
||||||
android:background="@drawable/addmessage_selector"/>
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/textViewNew"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:text="New"
|
|
||||||
android:textStyle="bold"
|
|
||||||
android:paddingTop="7dp"
|
|
||||||
android:textColor="#FFFFFF"
|
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
||||||
android:layout_weight="0"
|
|
||||||
android:paddingRight="5dp"
|
|
||||||
android:visibility="gone"/>
|
|
||||||
<!-- android:background="@drawable/addmessage_selector" -->
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:gravity="left"
|
|
||||||
android:layout_weight="0"
|
|
||||||
android:orientation="horizontal"
|
|
||||||
style="?header"
|
|
||||||
android:id="@+id/layoutHeaderConversation">
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:layout_gravity="center_vertical">
|
|
||||||
<ImageButton
|
|
||||||
android:id="@+id/imageButtonBack"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="center_vertical"
|
|
||||||
android:layout_marginRight="5dp"
|
|
||||||
android:paddingLeft="2dp"
|
|
||||||
android:background="@drawable/messageback_selector"/>
|
|
||||||
</LinearLayout>
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:layout_gravity="center_horizontal"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:gravity="right|center_vertical"
|
|
||||||
android:orientation="horizontal"
|
|
||||||
android:paddingBottom="0dp"
|
|
||||||
android:paddingRight="15dp"
|
|
||||||
android:paddingTop="0dp" >
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_gravity="center_vertical"
|
|
||||||
android:layout_weight="0">
|
|
||||||
<ImageView
|
|
||||||
android:id="@+id/imageViewSelectedContact"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="35dp"
|
|
||||||
android:src="@drawable/ambulance_large"
|
|
||||||
android:layout_margin="3dp" />
|
|
||||||
</LinearLayout>
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/textViewSelectedContact"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:text="Large Text"
|
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:paddingLeft="3dp"
|
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
||||||
android:layout_weight="0"/>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<!-- android:background="@drawable/addmessage_selector" -->
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:id="@+id/layoutConversations"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<GridView
|
</LinearLayout>
|
||||||
android:id="@+id/gridView1"
|
|
||||||
android:layout_width="fill_parent"
|
<!-- android:background="@drawable/addmessage_selector" -->
|
||||||
android:layout_height="wrap_content"
|
</LinearLayout>
|
||||||
android:background="#999999"
|
|
||||||
android:drawSelectorOnTop="false"
|
<LinearLayout
|
||||||
android:horizontalSpacing="0dp"
|
android:layout_width="fill_parent"
|
||||||
android:numColumns="1"
|
android:layout_height="wrap_content"
|
||||||
android:verticalSpacing="1dp" >
|
android:id="@+id/layoutConversations"
|
||||||
</GridView>
|
android:layout_weight="1"
|
||||||
</LinearLayout>
|
android:orientation="vertical">
|
||||||
|
|
||||||
<LinearLayout
|
<GridView
|
||||||
android:id="@+id/layoutSendMsg"
|
android:id="@+id/gridView1"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:gravity="left"
|
android:background="#999999"
|
||||||
android:layout_weight="0"
|
android:drawSelectorOnTop="false"
|
||||||
android:orientation="horizontal"
|
android:horizontalSpacing="0dp"
|
||||||
style="?header">
|
android:numColumns="1"
|
||||||
<LinearLayout
|
android:verticalSpacing="1dp" >
|
||||||
android:layout_weight="0"
|
</GridView>
|
||||||
android:layout_width="wrap_content"
|
</LinearLayout>
|
||||||
android:layout_height="fill_parent">
|
|
||||||
<TextView
|
<LinearLayout
|
||||||
android:id="@+id/textViewSendMsg"
|
android:id="@+id/layoutSendMsg"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center_vertical"
|
android:gravity="left"
|
||||||
android:text="@string/message"
|
android:layout_weight="0"
|
||||||
android:layout_marginLeft="5dp"
|
android:orientation="horizontal"
|
||||||
android:layout_marginRight="5dp"
|
style="?header">
|
||||||
android:textSize="18dp"
|
<LinearLayout
|
||||||
/>
|
android:layout_weight="0"
|
||||||
</LinearLayout>
|
android:layout_width="wrap_content"
|
||||||
<LinearLayout
|
android:layout_height="fill_parent">
|
||||||
android:layout_weight="1"
|
<TextView
|
||||||
android:layout_width="fill_parent"
|
android:id="@+id/textView1"
|
||||||
android:layout_height="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:gravity="center_vertical"
|
android:layout_height="wrap_content"
|
||||||
android:paddingTop="4dp">
|
android:layout_gravity="center_vertical"
|
||||||
<EditText
|
android:text="@string/message"
|
||||||
android:id="@+id/editTextMsg"
|
android:layout_marginLeft="5dp"
|
||||||
android:layout_width="fill_parent"
|
android:layout_marginRight="5dp"
|
||||||
android:layout_height="wrap_content"
|
android:textSize="18dp"
|
||||||
android:layout_gravity="center_vertical"
|
/>
|
||||||
android:gravity="center_vertical"
|
</LinearLayout>
|
||||||
android:inputType="text"
|
<LinearLayout
|
||||||
android:maxLength="255" >
|
android:layout_weight="1"
|
||||||
</EditText>
|
android:layout_width="fill_parent"
|
||||||
</LinearLayout>
|
android:layout_height="wrap_content"
|
||||||
<LinearLayout
|
android:gravity="center_vertical"
|
||||||
android:layout_weight="0"
|
android:paddingTop="4dp">
|
||||||
android:layout_width="wrap_content"
|
<EditText
|
||||||
android:layout_height="wrap_content"
|
android:id="@+id/editTextMsg"
|
||||||
android:gravity="center_vertical"
|
android:layout_width="fill_parent"
|
||||||
android:paddingTop="4dp">
|
android:layout_height="wrap_content"
|
||||||
<ImageView
|
android:layout_gravity="center_vertical"
|
||||||
android:id="@+id/imageBarcode"
|
android:gravity="center_vertical"
|
||||||
android:layout_width="wrap_content"
|
android:inputType="text"
|
||||||
android:layout_height="35dp"
|
android:maxLength="255"
|
||||||
android:src="@drawable/barcode"
|
android:autofillHints="">
|
||||||
android:layout_margin="3dp" />
|
</EditText>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
<Button
|
<LinearLayout
|
||||||
android:id="@+id/imageButtonSend"
|
android:layout_weight="0"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="0"
|
android:gravity="center_vertical"
|
||||||
android:text="@string/send"
|
android:paddingTop="4dp">
|
||||||
android:layout_marginRight="5dp"
|
<ImageView
|
||||||
android:layout_gravity="center"
|
android:id="@+id/imageBarcode"
|
||||||
android:paddingLeft="6dp"
|
android:layout_width="wrap_content"
|
||||||
android:textColor="#000000"
|
android:layout_height="35dp"
|
||||||
style="?login"/>
|
android:src="@drawable/barcode"
|
||||||
</LinearLayout>
|
android:layout_margin="3dp" />
|
||||||
|
</LinearLayout>
|
||||||
|
<Button
|
||||||
|
android:id="@+id/imageButtonSend"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="0"
|
||||||
|
android:text="@string/send"
|
||||||
|
android:layout_marginRight="5dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:paddingLeft="6dp"
|
||||||
|
android:textColor="#000000"
|
||||||
|
style="?login"/>
|
||||||
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
Loading…
Reference in New Issue
Block a user