text color on radio
This commit is contained in:
parent
17a7e1711e
commit
d9d325b18b
@ -28,13 +28,11 @@ public class TCPService extends Service {
|
|||||||
int port = 13589;
|
int port = 13589;
|
||||||
try {
|
try {
|
||||||
port = Integer.parseInt(AppParams.PORT);
|
port = Integer.parseInt(AppParams.PORT);
|
||||||
}
|
} catch(Exception ex) { }
|
||||||
catch(Exception ex) { }
|
|
||||||
|
|
||||||
tcpParser = new TCPmsgParser();
|
tcpParser = new TCPmsgParser();
|
||||||
|
|
||||||
if(tcp == null && !AppParams.IP.equalsIgnoreCase("n/a"))
|
if(tcp == null && !AppParams.IP.equalsIgnoreCase("n/a")) {
|
||||||
{
|
|
||||||
tcp = new TCPhandler(getApplicationContext(), AppParams.IP, port);
|
tcp = new TCPhandler(getApplicationContext(), AppParams.IP, port);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ public class TCPhandler implements Runnable
|
|||||||
private boolean alive = true;
|
private boolean alive = true;
|
||||||
|
|
||||||
public String serverHostname = new String ("10.120.1.114");//
|
public String serverHostname = new String ("10.120.1.114");//
|
||||||
private int port = 13579;
|
private int port;
|
||||||
private Thread listenThread;
|
private Thread listenThread;
|
||||||
private Socket soc =null;
|
private Socket soc =null;
|
||||||
|
|
||||||
|
@ -233,10 +233,10 @@ public class SDMobileActivity extends Activity {
|
|||||||
etPassword.setText(AppParams.PASSWORD.equalsIgnoreCase("n/a") ? "" : AppParams.PASSWORD);
|
etPassword.setText(AppParams.PASSWORD.equalsIgnoreCase("n/a") ? "" : AppParams.PASSWORD);
|
||||||
}
|
}
|
||||||
|
|
||||||
layoutTCP = (RelativeLayout) findViewById(R.id.layoutTCP);
|
layoutTCP = findViewById(R.id.layoutTCP);
|
||||||
|
|
||||||
llUsername = (LinearLayout) findViewById(R.id.llUsername);
|
llUsername = findViewById(R.id.llUsername);
|
||||||
llPassword = (LinearLayout) findViewById(R.id.llPassword);
|
llPassword = findViewById(R.id.llPassword);
|
||||||
|
|
||||||
// enable ui after the language is changed and tcp connection is on
|
// enable ui after the language is changed and tcp connection is on
|
||||||
if (tcp != null && tcp.isConnectionUP) {
|
if (tcp != null && tcp.isConnectionUP) {
|
||||||
@ -663,7 +663,7 @@ public class SDMobileActivity extends Activity {
|
|||||||
// get default password
|
// get default password
|
||||||
AppParams.PASSWORD = AppParams.prefs.getString(PASSWORD, "n/a");
|
AppParams.PASSWORD = AppParams.prefs.getString(PASSWORD, "n/a");
|
||||||
// get default IP
|
// get default IP
|
||||||
AppParams.IP = AppParams.prefs.getString("ip", "192.168.2.100");
|
AppParams.IP = AppParams.prefs.getString("ip", "185.8.154.190");
|
||||||
|
|
||||||
// get Radio ID & IP
|
// get Radio ID & IP
|
||||||
AppParams.RADIOID = AppParams.prefs.getInt("radioId", 100);
|
AppParams.RADIOID = AppParams.prefs.getInt("radioId", 100);
|
||||||
|
@ -237,7 +237,6 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/Zone"
|
android:text="@string/Zone"
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
android:textColor="#ffffffff"
|
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/layoutSpinnerZone"
|
android:id="@+id/layoutSpinnerZone"
|
||||||
@ -277,7 +276,6 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/Channel"
|
android:text="@string/Channel"
|
||||||
android:textColor="#ffffffff"
|
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
||||||
|
|
||||||
@ -387,7 +385,7 @@
|
|||||||
android:checked="true"
|
android:checked="true"
|
||||||
android:text="@string/AllCall"
|
android:text="@string/AllCall"
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
android:textColor="#ffffffff" />
|
/>
|
||||||
|
|
||||||
<RadioButton
|
<RadioButton
|
||||||
android:id="@+id/radioGroup"
|
android:id="@+id/radioGroup"
|
||||||
@ -395,7 +393,7 @@
|
|||||||
android:layout_height="30dp"
|
android:layout_height="30dp"
|
||||||
android:text="@string/GroupCall"
|
android:text="@string/GroupCall"
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
android:textColor="#ffffffff" />
|
/>
|
||||||
|
|
||||||
<RadioButton
|
<RadioButton
|
||||||
android:id="@+id/radioPrivate"
|
android:id="@+id/radioPrivate"
|
||||||
@ -403,7 +401,7 @@
|
|||||||
android:layout_height="30dp"
|
android:layout_height="30dp"
|
||||||
android:text="@string/PrivateCall"
|
android:text="@string/PrivateCall"
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
android:textColor="#ffffffff" />
|
/>
|
||||||
|
|
||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
Loading…
Reference in New Issue
Block a user