SD-211 - show all recordings and play them
This commit is contained in:
@ -45,7 +45,6 @@
|
||||
android:name="com.safemobile.safedispatch.SDMobileActivity"
|
||||
android:configChanges="orientation"
|
||||
android:exported="true"
|
||||
android:label="@string/app_name_demo"
|
||||
android:screenOrientation="landscape">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
@ -22,7 +22,7 @@ public class AudioHandle implements Runnable{
|
||||
private DataOutputStream outData =null;
|
||||
private Thread t_micListner;
|
||||
private UDPclient udp;
|
||||
private TCPaudioClient tcp;
|
||||
private TcpAudioClient tcp;
|
||||
private int audioport = 50001;
|
||||
|
||||
public int typeUDP;
|
||||
@ -56,7 +56,7 @@ public class AudioHandle implements Runnable{
|
||||
else
|
||||
{
|
||||
try {
|
||||
tcp = new TCPaudioClient(IP,audioport);
|
||||
tcp = new TcpAudioClient(IP,audioport);
|
||||
bufferSize = AudioTrack.getMinBufferSize(SAMPLE_RATE, AudioFormat.CHANNEL_OUT_MONO, AudioFormat.ENCODING_PCM_16BIT);
|
||||
|
||||
|
||||
@ -155,7 +155,7 @@ public class AudioHandle implements Runnable{
|
||||
/*
|
||||
tempBuffer = new byte[16384];//128];//invers3.bufferSize];
|
||||
bRead = recDev.read(tempBuffer, 0,16384);// 128);//invers3.bufferSize);*/
|
||||
tcp.Send(tempBuffer,bRead);
|
||||
tcp.send(tempBuffer,bRead);
|
||||
SM.Debug("TCP sending b:"+bRead);
|
||||
}
|
||||
}
|
||||
|
@ -13,7 +13,7 @@ public class RecordingHandle {
|
||||
public RecordingHandle(String ip) {
|
||||
try {
|
||||
final int RECORDING_PORT = 50003;
|
||||
TCPaudioClient tcp = new TCPaudioClient(ip, RECORDING_PORT);
|
||||
TcpAudioClient tcp = new TcpAudioClient(ip, RECORDING_PORT);
|
||||
final int sampleRate = 8000;
|
||||
int bufferSize = AudioTrack.getMinBufferSize(sampleRate, AudioFormat.CHANNEL_OUT_MONO, AudioFormat.ENCODING_PCM_16BIT);
|
||||
//init play device
|
||||
@ -36,7 +36,7 @@ public class RecordingHandle {
|
||||
playDev.write(data, 0, data.length);
|
||||
playDev.play();
|
||||
} else {
|
||||
SM.Debug("Cannot play sound playDev NOT init corectly");
|
||||
SM.Debug("Cannot play sound playDev NOT init correctly");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -8,140 +8,108 @@ import java.io.OutputStream;
|
||||
import java.net.Socket;
|
||||
import java.net.UnknownHostException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
public class TCPaudioClient implements Runnable{
|
||||
private boolean alive = true;
|
||||
|
||||
public String serverHostname = new String ("10.120.1.114");//
|
||||
private int port = 50001;
|
||||
public class TcpAudioClient implements Runnable {
|
||||
private boolean alive = true;
|
||||
|
||||
private String serverHostname;
|
||||
private final int port;
|
||||
private Thread listenThread;
|
||||
private Socket soc =null;
|
||||
|
||||
private Socket soc = null;
|
||||
|
||||
private InputStream recv;
|
||||
private OutputStream writer;
|
||||
|
||||
private volatile int n=0;
|
||||
|
||||
public Boolean connOK=false;
|
||||
private Boolean connOK = false;
|
||||
byte[] buffer = new byte[16384];
|
||||
private List<ITCPaudioLis> _listeners = new ArrayList<ITCPaudioLis>();
|
||||
|
||||
public TCPaudioClient(String hostName, int _port)
|
||||
{
|
||||
serverHostname=hostName;
|
||||
this.port = _port;
|
||||
SM.Debug("---TCPhandler construcort--- port:"+_port);
|
||||
listenThread = new Thread(this, "TCPlisten");
|
||||
private final List<ITCPaudioLis> listeners = new ArrayList<>();
|
||||
|
||||
public TcpAudioClient(String hostName, int port) {
|
||||
setServerHostname(hostName);
|
||||
this.port = port;
|
||||
SM.Debug("---TcpHandler constructor--- port:" + port);
|
||||
listenThread = new Thread(this, "TcpListen");
|
||||
listenThread.start(); // (2) Start the thread.
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void run()
|
||||
{
|
||||
try
|
||||
{
|
||||
soc = new Socket(serverHostname, port);
|
||||
SM.Debug("Socket timeout:" + soc.getSoTimeout() );
|
||||
//soc.setSoTimeout(5000);
|
||||
recv= soc.getInputStream();
|
||||
writer =soc.getOutputStream() ;
|
||||
if(soc !=null)
|
||||
connOK = true;
|
||||
|
||||
}
|
||||
catch (UnknownHostException e)
|
||||
{
|
||||
SM.Debug("UnknownHostException", "break:"+e.toString());
|
||||
}
|
||||
catch (IOException e)
|
||||
{
|
||||
SM.Debug("IOException", "break:"+e.toString());
|
||||
public void run() {
|
||||
try {
|
||||
soc = new Socket(getServerHostname(), port);
|
||||
SM.Debug("Socket timeout:" + soc.getSoTimeout());
|
||||
recv = soc.getInputStream();
|
||||
writer = soc.getOutputStream();
|
||||
if (soc != null)
|
||||
setConnOK(true);
|
||||
|
||||
} catch (UnknownHostException e) {
|
||||
SM.Debug("UnknownHostException", "break:" + e);
|
||||
} catch (IOException e) {
|
||||
SM.Debug("IOException", "break:" + e);
|
||||
}
|
||||
|
||||
while(alive)
|
||||
{
|
||||
|
||||
while (alive) {
|
||||
try {
|
||||
Thread.sleep(3000);
|
||||
} catch (InterruptedException e) {
|
||||
// TODO Auto-generated catch block
|
||||
SM.Debug(e.toString());
|
||||
Thread.currentThread().interrupt();
|
||||
}
|
||||
while(connOK)
|
||||
{
|
||||
try
|
||||
{
|
||||
buffer = new byte[16384];
|
||||
n = recv.read(buffer);
|
||||
if(n==-1)
|
||||
while (Boolean.TRUE.equals(getConnOK())) {
|
||||
try {
|
||||
buffer = new byte[16384];
|
||||
int n = recv.read(buffer);
|
||||
if (n == -1)
|
||||
break;
|
||||
_fireDataArrived(buffer,n);
|
||||
fireDataArrived(buffer, n);
|
||||
} catch (Exception ex) {
|
||||
SM.Debug("break:" + ex);
|
||||
setConnOK(false);
|
||||
}
|
||||
catch(Exception ex)
|
||||
{
|
||||
SM.Debug("break:"+ex.toString());
|
||||
connOK = false;
|
||||
}
|
||||
}//while(connOK)
|
||||
|
||||
}
|
||||
|
||||
try {
|
||||
Thread.sleep(3000);
|
||||
} catch (InterruptedException e) {
|
||||
// TODO Auto-generated catch block
|
||||
SM.Debug(e.toString());
|
||||
Thread.currentThread().interrupt();
|
||||
}
|
||||
if(alive)RestartTCP();
|
||||
}//while(alive)
|
||||
|
||||
if (alive) restartTCP();
|
||||
}
|
||||
SM.Debug("==================================");
|
||||
SM.Debug("TCP listenThread stoped!! alive = false");
|
||||
SM.Debug("TCP listenThread stopped!! alive = false");
|
||||
SM.Debug("==================================");
|
||||
}
|
||||
|
||||
public boolean Send(byte[] data,int len)
|
||||
{
|
||||
|
||||
try
|
||||
{
|
||||
|
||||
if(writer != null)
|
||||
{
|
||||
writer.write(data,0,len);
|
||||
|
||||
public boolean send(byte[] data, int len) {
|
||||
|
||||
try {
|
||||
|
||||
if (writer != null) {
|
||||
writer.write(data, 0, len);
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
// TODO Auto-generated catch block
|
||||
} catch (Exception e) {
|
||||
SM.Debug(e.toString());
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private void RestartTCP()
|
||||
{
|
||||
try
|
||||
{
|
||||
SM.Debug("Restarting TCP...ip:"+serverHostname);
|
||||
soc = new Socket(serverHostname, port);
|
||||
recv= soc.getInputStream();
|
||||
writer =soc.getOutputStream();
|
||||
if(soc !=null)
|
||||
connOK = true;
|
||||
|
||||
}
|
||||
catch (UnknownHostException e)
|
||||
{
|
||||
SM.Debug("break:"+e.toString());
|
||||
}
|
||||
catch (IOException e)
|
||||
{
|
||||
SM.Debug("break:"+e.toString());
|
||||
|
||||
private void restartTCP() {
|
||||
try {
|
||||
SM.Debug("Restarting TCP...ip:" + getServerHostname());
|
||||
soc = new Socket(getServerHostname(), port);
|
||||
recv = soc.getInputStream();
|
||||
writer = soc.getOutputStream();
|
||||
setConnOK(true);
|
||||
|
||||
} catch (IOException e) {
|
||||
SM.Debug("break:" + e);
|
||||
}
|
||||
}
|
||||
|
||||
@ -152,44 +120,55 @@ private boolean alive = true;
|
||||
public void setAlive(boolean alive) {
|
||||
this.alive = alive;
|
||||
}
|
||||
|
||||
public void Stop()
|
||||
{
|
||||
|
||||
|
||||
public void stop() {
|
||||
|
||||
this.alive = false;
|
||||
if(soc !=null)
|
||||
{
|
||||
if (soc != null) {
|
||||
try {
|
||||
soc.close();
|
||||
soc = null;
|
||||
} catch (IOException e) {
|
||||
// TODO Auto-generated catch block
|
||||
SM.Debug("break:"+e.toString());
|
||||
SM.Debug("break:" + e);
|
||||
}
|
||||
connOK = false;
|
||||
setConnOK(false);
|
||||
}
|
||||
// stop thread
|
||||
if(listenThread != null)
|
||||
{
|
||||
Thread moribund = listenThread;
|
||||
listenThread = null;
|
||||
moribund.interrupt();
|
||||
}
|
||||
if (listenThread != null) {
|
||||
Thread moribund = listenThread;
|
||||
listenThread = null;
|
||||
moribund.interrupt();
|
||||
}
|
||||
}
|
||||
|
||||
public synchronized void addTCPListener( ITCPaudioLis l ) {
|
||||
_listeners.add( (ITCPaudioLis) l );
|
||||
}
|
||||
|
||||
public synchronized void removeTCPListener( ITCPaudioLis l ) {
|
||||
_listeners.remove( l );
|
||||
|
||||
public synchronized void addTCPListener(ITCPaudioLis l) {
|
||||
listeners.add(l);
|
||||
}
|
||||
|
||||
private synchronized void _fireDataArrived(byte[] data, int len) {
|
||||
TCPaudioEvent event = new TCPaudioEvent( this, data, len );
|
||||
Iterator<ITCPaudioLis> listeners = _listeners.iterator();
|
||||
while( listeners.hasNext() ) {
|
||||
( (ITCPaudioLis) listeners.next() ).dataRecv(event);
|
||||
}
|
||||
|
||||
public synchronized void removeTCPListener(ITCPaudioLis l) {
|
||||
listeners.remove(l);
|
||||
}
|
||||
}
|
||||
|
||||
private synchronized void fireDataArrived(byte[] data, int len) {
|
||||
TCPaudioEvent event = new TCPaudioEvent(this, data, len);
|
||||
for (ITCPaudioLis listener : listeners) {
|
||||
listener.dataRecv(event);
|
||||
}
|
||||
}
|
||||
|
||||
public String getServerHostname() {
|
||||
return serverHostname;
|
||||
}
|
||||
|
||||
public void setServerHostname(String serverHostname) {
|
||||
this.serverHostname = serverHostname;
|
||||
}
|
||||
|
||||
public Boolean getConnOK() {
|
||||
return connOK;
|
||||
}
|
||||
|
||||
public void setConnOK(Boolean connOK) {
|
||||
this.connOK = connOK;
|
||||
}
|
||||
}
|
@ -80,12 +80,12 @@ public class RecordingsActivity extends Activity {
|
||||
activity = this;
|
||||
|
||||
// change tab header fontFace
|
||||
TextView textView1 = (TextView) findViewById(R.id.textViewTitle);
|
||||
TextView textView1 = findViewById(R.id.textViewTitle);
|
||||
textView1.setTypeface(Typeface.createFromAsset(getAssets(), "Sketch_Block.ttf"));
|
||||
textView1.setTextSize(24);
|
||||
|
||||
gridView = (GridView) findViewById(R.id.gridViewRecordings);
|
||||
adapter = new RecordingsGridViewAdapter(activity, context, getAllRecordings(), playingPositions);
|
||||
gridView = findViewById(R.id.gridViewRecordings);
|
||||
adapter = new RecordingsGridViewAdapter(activity, getAllRecordings(), playingPositions);
|
||||
gridView.setAdapter(adapter);
|
||||
|
||||
gridView.setOnItemClickListener(onItemClickListener);
|
||||
@ -93,10 +93,10 @@ public class RecordingsActivity extends Activity {
|
||||
if (recHandle == null && !AppParams.DEMO)
|
||||
recHandle = new RecordingHandle(AppParams.IP);
|
||||
|
||||
textViewCount = (TextView) findViewById(R.id.textViewCount);
|
||||
textViewCount = findViewById(R.id.textViewCount);
|
||||
updateNumberOfRecordings();
|
||||
|
||||
textViewGateway = (TextView) findViewById(R.id.textViewGateway);
|
||||
textViewGateway = findViewById(R.id.textViewGateway);
|
||||
textViewGateway.setTypeface(Typeface.createFromAsset(getAssets(), "Sketch_Block.ttf"));
|
||||
textViewGateway.setTextSize(24);
|
||||
textViewGateway.setOnClickListener(v -> {
|
||||
@ -185,7 +185,7 @@ public class RecordingsActivity extends Activity {
|
||||
// if no recording is playing and not DEMO
|
||||
if (getPlayingPosition() < 0 && !AppParams.DEMO) {
|
||||
// send recording request to App Server
|
||||
sendPlayRequest(getAllRecordings().get(position).ID);
|
||||
sendPlayRequest(getAllRecordings().get(position).id);
|
||||
// flag that sound is needed
|
||||
recHandle.startSound();
|
||||
recHandle.setSoundNeeded(true);
|
||||
@ -272,10 +272,7 @@ public class RecordingsActivity extends Activity {
|
||||
public void updateRecordings(ArrayList<Recording> list) {
|
||||
setAllRecordings(new ArrayList<>());
|
||||
for (Recording rec : list) {
|
||||
if (rec.typeID == 1 && rec.subID == AppParams.USERID)
|
||||
getAllRecordings().add(rec);
|
||||
else if (rec.typeID != 1)
|
||||
getAllRecordings().add(rec);
|
||||
getAllRecordings().add(rec);
|
||||
}
|
||||
myHandler.post(updateResultsRUN);
|
||||
}
|
||||
@ -294,7 +291,7 @@ public class RecordingsActivity extends Activity {
|
||||
for (int i = 0; i < getAllRecordings().size(); i++)
|
||||
playingPositions.add(true);
|
||||
// set adapter - where playingPositions stores exists values
|
||||
adapter = new RecordingsGridViewAdapter(activity, context, getAllRecordings(), playingPositions);
|
||||
adapter = new RecordingsGridViewAdapter(activity, getAllRecordings(), playingPositions);
|
||||
|
||||
// playing positions need to be false because no recording is played
|
||||
playingPositions.clear();
|
||||
|
@ -47,6 +47,7 @@ import com.safemobile.lib.SMSmsg;
|
||||
import com.safemobile.lib.SerializedObject;
|
||||
import com.safemobile.lib.SuperVehicle;
|
||||
import com.safemobile.lib.TCPmsg;
|
||||
import com.safemobile.lib.User;
|
||||
import com.safemobile.lib.VehMSG;
|
||||
import com.safemobile.lib.Vehicle;
|
||||
import com.safemobile.lib.radio.RadioGW;
|
||||
@ -402,7 +403,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
|
||||
}
|
||||
}
|
||||
|
||||
SM.Debug("Logged user:" + AppParams.USERNAME + " | ID: " + AppParams.USERID);
|
||||
SM.Debug("Logged user:" + AppParams.USERNAME + " | id: " + AppParams.USERID);
|
||||
// do not dim the display
|
||||
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
|
||||
|
||||
@ -633,7 +634,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
|
||||
if (AppParams.DEMO && getRecordingsActivity() != null && getRecordingsActivity().getAllRecordings() != null && getRecordingsActivity().getAllRecordings().isEmpty()) {
|
||||
ArrayList<Recording> listRecordings = new ArrayList<>();
|
||||
Recording rec = new Recording();
|
||||
rec.NameForDisplay = "Rob";
|
||||
rec.userWhoWasCalled = "Rob";
|
||||
rec.subID = 101;
|
||||
rec.endGMT = (int) Calendar.getInstance().getTime().getTime();
|
||||
rec.startGMT = rec.endGMT - 2;
|
||||
@ -641,7 +642,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
|
||||
listRecordings.add(rec);
|
||||
|
||||
rec = new Recording();
|
||||
rec.NameForDisplay = "Call1 [Rob]";
|
||||
rec.userWhoWasCalled = "Call1 [Rob]";
|
||||
rec.subID = 102;
|
||||
rec.endGMT = (int) Calendar.getInstance().getTime().getTime();
|
||||
rec.startGMT = rec.endGMT - 2;
|
||||
@ -649,7 +650,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
|
||||
listRecordings.add(rec);
|
||||
|
||||
rec = new Recording();
|
||||
rec.NameForDisplay = "Call2 [Rob]";
|
||||
rec.userWhoWasCalled = "Call2 [Rob]";
|
||||
rec.subID = 101;
|
||||
rec.endGMT = (int) Calendar.getInstance().getTime().getTime();
|
||||
rec.startGMT = rec.endGMT - 3;
|
||||
@ -1004,8 +1005,6 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
|
||||
moribund.interrupt();
|
||||
}
|
||||
|
||||
this.unregisterReceiver(mReceiver);
|
||||
|
||||
// unbound from tcp service
|
||||
if (isBound) {
|
||||
getApplicationContext().unbindService(serviceConnection);
|
||||
@ -1359,7 +1358,7 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
|
||||
SM.Debug("Got PlayRec :" + msg.allData);
|
||||
|
||||
if (NO_SOUND) {
|
||||
SM.Debug("Recording Play file ID:" + msg.data);
|
||||
SM.Debug("Recording Play file id:" + msg.data);
|
||||
|
||||
//list for SMS
|
||||
if (AppParams.crtTab == AppParams.Tabs.recordings) {
|
||||
@ -1610,13 +1609,13 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
|
||||
setAllRadios(radioMSG.RadioGWList);
|
||||
if (getCrtRadio() == null) {
|
||||
setCrtRadio(getAllRadios().get(0));
|
||||
SM.Debug("radioMSG set 0 crtRadio GW_ID:" + getCrtRadio().GW_ID + " ID:" + getCrtRadio().ID + ")");
|
||||
SM.Debug("radioMSG set 0 crtRadio GW_ID:" + getCrtRadio().GW_ID + " id:" + getCrtRadio().ID + ")");
|
||||
|
||||
notifyBroadcast(OperationCodes.RADIOID_CHANGED + "");
|
||||
}
|
||||
}
|
||||
|
||||
// save crt Radio ID and GW
|
||||
// save crt Radio id and GW
|
||||
if (radioMSG.zac != null) {
|
||||
for (RadioGW radio : getAllRadios()) {
|
||||
if (radio.GW_ID == radioMSG.zac.gwID && radio.ID == radioMSG.zac.rgwID)
|
||||
@ -1717,19 +1716,76 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
|
||||
|
||||
//list for SMS
|
||||
if (AppParams.crtTab == AppParams.Tabs.recordings) {
|
||||
for (Recording rec : recordMSG.recordList) {
|
||||
// set the name to be displayed
|
||||
if (rec.typeID == 1)
|
||||
rec.NameForDisplay = AppParams.USERNAME;
|
||||
else {
|
||||
SuperVehicle superVehicle = getSuperVehHash().get((long) rec.subID);
|
||||
if (superVehicle != null)
|
||||
rec.NameForDisplay = superVehicle.name;
|
||||
for (Recording rec : recordMSG.getRecordList()) {
|
||||
SuperVehicle superVehicle = getSuperVehHash().get((long) rec.subID);
|
||||
// set the name to be displayed
|
||||
switch (rec.callType) {
|
||||
case 0:
|
||||
for (User u : AppParams.allUsers) {
|
||||
if (u.id == rec.dispatcherId)
|
||||
rec.userWhoCalled = u.login;
|
||||
}
|
||||
if (rec.userWhoCalled == null || rec.userWhoCalled.isEmpty())
|
||||
rec.userWhoCalled = String.valueOf(rec.dispatcherId);
|
||||
|
||||
if (superVehicle != null)
|
||||
rec.userWhoWasCalled = superVehicle.name;
|
||||
else
|
||||
rec.userWhoWasCalled = String.valueOf(rec.subID);
|
||||
break;
|
||||
case 4:
|
||||
rec.userWhoWasCalled = AppParams.USERNAME;
|
||||
if (superVehicle != null)
|
||||
rec.userWhoCalled = superVehicle.name;
|
||||
else
|
||||
rec.userWhoCalled = String.valueOf(rec.subID);
|
||||
break;
|
||||
case 1:
|
||||
for (User u : AppParams.allUsers) {
|
||||
if (u.id == rec.dispatcherId)
|
||||
rec.userWhoCalled = u.login;
|
||||
}
|
||||
if (rec.userWhoCalled == null || rec.userWhoCalled.isEmpty())
|
||||
rec.userWhoCalled = String.valueOf(rec.dispatcherId);
|
||||
|
||||
if (rec.groupName == null || rec.groupName.isEmpty())
|
||||
rec.userWhoWasCalled = String.valueOf(rec.groupCpsId);
|
||||
else
|
||||
rec.userWhoWasCalled = rec.groupName;
|
||||
break;
|
||||
case 5:
|
||||
if (superVehicle != null)
|
||||
rec.userWhoCalled = superVehicle.name;
|
||||
else
|
||||
rec.userWhoCalled = String.valueOf(rec.subID);
|
||||
|
||||
if (rec.groupName == null || rec.groupName.isEmpty())
|
||||
rec.userWhoWasCalled = String.valueOf(rec.groupCpsId);
|
||||
else
|
||||
rec.userWhoWasCalled = rec.groupName;
|
||||
break;
|
||||
case 2:
|
||||
for (User u : AppParams.allUsers) {
|
||||
if (u.id == rec.dispatcherId)
|
||||
rec.userWhoCalled = u.login;
|
||||
}
|
||||
if (rec.userWhoCalled == null || rec.userWhoCalled.isEmpty())
|
||||
rec.userWhoCalled = String.valueOf(rec.dispatcherId);
|
||||
|
||||
rec.userWhoWasCalled = "All Call";
|
||||
break;
|
||||
case 6:
|
||||
rec.userWhoWasCalled = "All Call";
|
||||
if (superVehicle != null)
|
||||
rec.userWhoCalled = superVehicle.name;
|
||||
else
|
||||
rec.userWhoCalled = String.valueOf(rec.subID);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// save recordings to AppParams
|
||||
AppParams.recordings = recordMSG.recordList;
|
||||
AppParams.recordings = recordMSG.getRecordList();
|
||||
|
||||
// notify recordings were received
|
||||
notifyBroadcast(OperationCodes.RECORDINGS_LIST_REP + "");
|
||||
@ -2322,4 +2378,10 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
|
||||
this.startActivity(intent);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onDestroy() {
|
||||
super.onDestroy();
|
||||
this.unregisterReceiver(mReceiver);
|
||||
}
|
||||
}
|
||||
|
@ -11,7 +11,7 @@
|
||||
android:paddingTop="2dp"
|
||||
android:text="TITLE"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||
android:textColor="#FFFFFF"
|
||||
android:textColor="@color/black"
|
||||
/>
|
||||
<LinearLayout
|
||||
android:id="@+id/layout_horizontal"
|
||||
@ -40,7 +40,7 @@
|
||||
android:paddingTop="8dp"
|
||||
android:text="Row1"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||
android:textColor="#FFFFFF"
|
||||
android:textColor="@color/black"
|
||||
/>
|
||||
<TextView android:id="@+id/text2"
|
||||
android:layout_width="wrap_content"
|
||||
@ -48,7 +48,7 @@
|
||||
android:paddingTop="8dp"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:text="Row2"
|
||||
android:textColor="#FFFFFF"
|
||||
android:textColor="@color/black"
|
||||
/>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
Reference in New Issue
Block a user