New answers tagged phone
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 ...
0
In addition to the problems noted in the other answers, you should also anchor the regexp. Otherwise, it will allow extra characters outside the phone number.
function validatePhone()
{
var num1 = document.getElementById('workno').value;
if (num1 !== "" && !num1.match(/^\(\d{2}\)\d{8}$/))
{
alert('That is not a correct telephone number ...
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}/))
{
...
0
Maybe you should select the value from the Input. Can you try
if (!num1.value.match(regex))
0
You could try using the IsolatedStorage API, even if just for that one DirectoryExists check: http://www.geekchamp.com/tips/all-about-wp7-isolated-storage-files-and-folders
EDIT
If you do need to port it all to IsolatedStorage, this MSDN page may be of use:
http://msdn.microsoft.com/en-us/library/zd5e2z84(v=vs.90).aspx
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 ...
0
Your potega variable is an Int32 (assuming you're using Visual Studio, hover over var to check the type), which truncates the result of 1/3, or 0.3333, to 0.
Either make potega a double:
double potega = 1 / 3;
Or cast one of the numbers to a double first:
var potega = 1d / 3;
0
Try while you creating XML use CDATA tags like
<title><![CDATA[Transport information Classic World's]]></title>
Also here is a list of HTML Tags and more cases XML with those characters is invalid, unless they are contained within a CDATA.
Also try this Question hope with help you
As You asking the you can not change the XML ...
0
If you have such possibility, wrap special characters in CDATA tags, when you create this XML.
0
To download zip file from the url first there is need to store zip files into isolated storage and after that extract it and read the file as per requirement.
http://axilis.hr/uznip-archives-windows-phone
0
//Say the text box's name as txtEmail
using System;
using System.Text.RegularExpressions;
private void txtEmail_Validating(object sender,
System.ComponentModel.CancelEventArgs e)
{
string errorMsg;
if(!ValidEmailAddress(txtEmail.Text, out errorMsg))
{
// Cancel the event and select the ...
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 ...
1
So here's the huge regex that will match your needs:
...
0
It is Mission Impossible for the time being.
Viewing the reason here : Why it is impossible to intercept incoming calls on Android
But I suggest you still a temporary solution I myself adopted :
Before to block the call, the first thing you need to do is retrieve the current mode of the phone ringing, and then turn on silent :
AudioManager audiomanage = ...
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.
0
Turn this into code:
create an empty destination string that you can add characters to
start at index 0 in both strings (formatIndex = numberIndex = 0)
for each character (formatChar) in the format string
{
if formatChar is a '#'
{
find the next number character (numberChar)
add numberChar to the destination string
}
else
...
0
If you want to save image locally and the display image from locally, then try this sample
http://code.msdn.microsoft.com/wpapps/CSWP8ImageFromIsolatedStora-8dcf8411, on WP 8 it's works fine.
0
Use java code in your activity to do this
if(isTabletDevice)
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
else
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
isTabletDevice code
public static boolean isTabletDevice(Context activityContext) {
// Verifies if the Generalized Size of the device is ...
0
see the below line for your answer
Determine if the device is a smartphone or tablet?
Find screen size dynamically and set screen mode landscape or portrait mode.
set programmatically landscape or portrait mode.
How to control landscape and portrait programmatically in android?
0
See my response on a different thread. The technique and requirement are the same.
http://stackoverflow.com/a/16559977/1179943
0
You need to URL-encode your string. For that, you can do something like this:
string deviceId = HttpUtility.UrlEncode("2NDJDRkI5MEVFME -H 'Access: Token token=CXJTY'");
Uri uri = new Uri("https://aaabbb.com/services/v4/put/users/xxxxx/device");
string data = "deviceId=" + deviceID;
WebClient wc = new WebClient();
wc.Headers(HttpRequestHeader.ContentType) = ...
0
found it! and it works!
AudioSessionInitialize(NULL, NULL, NULL, NULL);
UInt32 value = kAudioSessionCategory_PlayAndRecord;
AudioSessionSetProperty(kAudioSessionProperty_AudioCategory, size, &value);
0
Please once check your Manifestfile and select Capability option click in ID_CAP_MAP.
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 ...
0
Why to take so much pain? Just go about designing separate apps for phone and tablet (make sure they have the same package name). Multiple APKs is what you should look for:
Although we encourage you to develop and publish a single APK that supports as many device
configurations as possible, doing so is sometimes not possible. To help you publish your
...
-1
You will need to make multiple apks, one for tabs and one for phones, the only difference will be the manifest file in those apks. Rest you can manage with code.
0
I assume by the voicexml tag you are looking for technology that uses VoiceXML, which is a good choice since it a W3C web-based open standard supported by a lot of IVR vendors. Asterisk and Twilio do not support VoiceXML and use their own proprietary languages for development. My favorite is Voxeo's Prophecy platform. They support VoiceXML and provide ...
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" ...
0
One thing you can do is to research all the formats. You have found a few good ones. There are more here: http://en.wikipedia.org/wiki/Local_conventions_for_writing_telephone_numbers
Next you want to find documents in your corpus that have phone numbers in them, and others that have numbers that aren't phone numbers. This isn't needed if you are dealing ...
0
If you're using this inside an activity, then a context is what you get by using this. So basically here, instead of calling context.getContentResolver(), call this.getContentResolver() or simply just getContentResolver().
Eclipse complains basically because you're trying to call a method of something called context which Eclipse doesn't know because it ...
0
Either the md5 # is the encrypted .tar file name or it is the encrypted .tar file. First you must decrypt the tar file to see its name.
0
I believe you have to decorate all of your classes with the Serializable attribute, if they are to be serialized.
0
You might want to use a WebBrowserTask.
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");
}
...
0
You have to Enable USB Debugging option under Settings -> Developer Options.
0
You need to find the touch locations and check if the rectangle intersects with that position
TouchCollection touchCollection = TouchPanel.GetState();
foreach (TouchLocation tl in touchCollection)
{
if (tl.State == TouchLocationState.Pressed)
{
if (Rct_Btn_Play.Contains(new Point(tl.Position.X,tl.Position.Y))
{
//DoStuff
...
0
You're trying to add a string to a list of Items. My guess is that you're getting an invalid type exception or some such. Instead of listBox1.Items.Add(term1), try creating a new Item and assigning term1 to item.itemLine1, then listBox1.Items.Add(item).
0
You've set the ItemsSource to accept a type of Item, but then you're adding a string to it. Turn the string into an Item before adding it, so that it matches the expected type of the ItemSource.
0
It is possible, but not a great design. You should have it more typesafe, either by having a base class for A and B and your variable object as that base type or have the classes interfaced.
Example:
class BaseClass
{
}
class A: BaseClass{}
class B: BaseClass{}
BaseClass obj;
or
interface IClass{}
class A : IClass{}
class B: IClass{}
IClass obj;
0
The with class fluid-row in which you have the lightbox has "visible-desktop" class. This hides the whole div when you decrease the window size. Since the parent div display is now none - all the children (including the lightbox) are hidden. This happens because you have non unique ids in your HTML. id of the element should be unique - you have the same div ...
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 ...
0
There is a quite good service for phone verification called RingCaptcha (www.ringcaptcha.com) . They provide you an API and embed widgets for your site or mobile app.
0
I think you are confusing a couple of of issues here. When the phone is connected to the PC it can operate in several different (USB) modes, and therefore it will ask the user what type of operation it should use. There are a couple of those modes, but let's focus on USB Mass storage and USB ACM CDC.
For mass storage the phone exports its internal flash ...
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 ...
0
Not sure if you got to the solution, but I just had the same situation. It turns out that older VPN clients may have compatibility problems with Windows 8. I solved the issue by uninstalling VPN client (and also making sure Hyper-V was enabled).
0
Ok. I fixed it. In another question ( That was not the same issue as mine ) answer was " Whenever you recreate remoteviews, you recreate all of the intents that you used in onUpdate method and set the pendingintents again"
So i did that. I created a method called UpdateWidget and filled it with the things i have done in onUpdate, then removed everything ...
0
The problem is that your columns are set to width="Auto" This will let them grow as much as they want In practise this will grow as much as needed to accomodate all the content.
You should change it like so:
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"></ColumnDefinition>
<ColumnDefinition ...
0
The way I would handle this is by, creating a new eventhandler for the tap event on each button. Pass i as reference to the function.
btn.Tap += functionToHandleTap(i);
In the function it self I would create a switch or if statement and then navigate based on the i parameter passed to funtionToHandleTap.
private void functionToHandleTap(string i)
...
Top 50 recent answers are included











