Hot answers tagged phone
3
Two different activities will have two launcher icons when the user's device is a phone, and it will be just one (the activities will consist of fragments that I will display as tabs in one main activity) on tablet devices.
There is no concept in Android of "phone" and "tablet". I am going to assume that you are distinguishing between "phone" and ...
2
Download the windows phone toolkit and use GestureService.GestureListener
Xaml:
...
xmlns:tk="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
...
<Image Source="myImage.jpg" RenderTransformOrigin="0.5, 0.5" CacheMode="BitmapCache">
<Image.RenderTransform>
<CompositeTransform x:Name="transform" ...
2
Your regex goes through a lot of trouble to make sure the country code matches a strict set of rules but seems to not care what follows it. Which means the following examples would be matched by it:
+86-0000
+86----0
+86-1-1-1-1
The following regex is much shorter, is not as strict on the country code but is strict on the overall structure of the phone ...
2
Your num1 variable contains an element object, not its value so can't be tested with a regexp as it stands.
It will only ever by null if the element does not exist; it will be "" if its got no value.
function validatePhone()
{
var num1 = document.getElementById('workno').value;
if (num1 !== "" && !num1.match(/\(\d{2}\)\d{8}/))
{
...
1
Since you have not a valid mountpoint /sdcard, You have to use the application cache for store your object.
Retrieve the InputStream this way:
FileInputStream fin = openFileInput("save_object.bin");
and your FileOutputStream this way:
FileOutputStream fos = openFileOutput("save_object.bin", Context.MODE_PRIVATE);
to deserialize the object change ...
1
It's a problem indeed. There is no one solution to that will always work.
It is not stored on all SIM cards nor is it accessible always from the carrier network.
Physical address verification might be even require in some countries.
The assignment of a phone number assignment happens on the network - and can be changed without changing the SIM card or ...
1
So here's the huge regex that will match your needs:
...
1
You can associate a parameter to your tile
ShellTile.Create(new Uri("/ChangeTileOnlyPage.xaml?Change=1", UriKind.Relative), myShellTileData, true /*==supportsWideTile*/);
and evaluate this parameter in your ChangeTileOnlyPage:
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
base.OnNavigatedTo(e);
string ...
1
I recommend using the google libPhoneNumber library. There's a port to Objective-C here:
https://github.com/me2day/libPhoneNumber-iOS
It has all kinds of wonderful phone number parsing, formatting, validation, etc. functionality that makes phone numbers easier. I use it for all of my mobile apps.
1
I have found the way you are parsing & fetching the inner data is erroneous. I have closely verified the XML data from Flickr and modified the logic accordingly.
Here goes the complete code:
void webclient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
if (e.Error != null)
{
MessageBox.Show("error");
}
...
1
This is an essential truth of async in its purest form: There is no thread.
For a truly asynchronous stream, ReadToEndAsync has no almost work to do. When you call that method, it merely asks the runtime to read to the end, and notify it when the operation is complete (via a Task). The runtime turns to the OS, asks it to read, and notify it when the ...
1
Obviously I don't know the specific details of what you're trying to do, but I will say that putting sensitive information like passwords or private keys and the like into your application is almost always a bad idea. As fantastically productive .net is, it's also extremely easy to reverse engineer (in fact many, many advanced developers reverse programs ...
1
As I know you can not get the destination phone number, IMSI from the incoming SMS.
You can get the IMSI and phone Number of SIM like this way.
You can get the IMSI number of SIM but I don't think you will be able to get the phone number of all SIM because some manufacture did not save the phone number in SIM so you will get the NULL.
In Android, No way ...
Only top voted, non community-wiki answers of a minimum length are eligible


