active questions tagged mobile-development - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T05:58:02Zhttp://stackoverflow.com/feeds/tag/mobile-developmenthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1831490/android-onlongclicklistener-not-firing-on-mapview0Android OnLongClickListener not firing on MapViewJuri2009-12-02T08:39:27Z2009-12-03T10:57:53Z
<p>Hi,</p>
<p>I just registered an OnLongClickListener on my my MapView on an Android app I'm currently writing. For some reason however the onLongClick event doesn't fire.</p>
<p>Here's what I've written so far:</p>
<pre><code>public class FriendMapActivity extends MapActivity implements OnLongClickListener {
private static final int CENTER_MAP = Menu.FIRST;
private MapView mapView;
private MapController mapController;
//...
private boolean doCenterMap = true;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.friendmapview);
this.mapView = (MapView) findViewById(R.id.map_view);
this.mapController = mapView.getController();
mapView.setBuiltInZoomControls(true);
mapView.displayZoomControls(true);
mapView.setLongClickable(true);
mapView.setOnLongClickListener(new OnLongClickListener() {
public boolean onLongClick(View v) {
//NEVER FIRES!!
return false;
}
});
//...
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
switch (keyCode) {
case KeyEvent.KEYCODE_3:
mapController.zoomIn();
break;
case KeyEvent.KEYCODE_1:
mapController.zoomOut();
break;
}
return super.onKeyDown(keyCode, event);
}
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
int actionType = ev.getAction();
switch (actionType) {
case MotionEvent.ACTION_MOVE:
doCenterMap = false;
break;
}
return super.dispatchTouchEvent(ev);
}
...
}
</code></pre>
<p>May overlays which I'm adding cause the problem?? Any suggestions?</p>
http://stackoverflow.com/questions/1832290/android-id-naming-convention-lower-case-with-underscore-vs-camel-case1Android id naming convention: lower case with underscore vs. camel caseJuri2009-12-02T11:17:37Z2009-12-02T15:30:11Z
<p>Hi,</p>
<p>I'm currently programming an application for the Android. Now what I found out is that you cannot place resource objects, say, an image in the drawable folder and name it like "myTestImage.jpg". This will give you a compiler error since camel case syntax is not allowed, so you'd have to rename it like "my_test_image.jpg".</p>
<p>But what about ids you define in the XML file. Say you have the following definition</p>
<pre><code><TextView android:id="@+id/myTextViewFirstname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Firstname" />
</code></pre>
<p>This is a valid definition, compiles and works just fine on my Android emulator although - as you see - I'm specifying the id in camel case syntax.</p>
<p>Now, the Android samples always use lower case and underscore. Is this just a naming convention to use lower case with underscore for the id's or may it cause problems on the real device?</p>
<p>Thx</p>
http://stackoverflow.com/questions/1757800/what-are-the-latest-tools-for-mobile-development-iphone-android-etc0What are the latest tools for mobile development - iPhone/Android/etc...Phill Pafford2009-11-18T17:44:37Z2009-11-18T17:50:18Z
<p>Looking for write once deploy across multiple platforms, is there such a thing? Also looking for an tools that would help speed up mobile development, OSX/Linux based preferred.</p>
http://stackoverflow.com/questions/1659853/facebook-connect-via-blackberry-app0Facebook connect via blackberry appanna2009-11-02T07:21:19Z2009-11-03T06:28:45Z
<p>i m developing a blackberry app which requires facebook login. can i login to facebook via my app without stopping the app in the middle. means can i login to facebook in parallel with my application, without interrupting it. </p>
http://stackoverflow.com/questions/461179/open-source-mobile-applications-development-tools0Open source Mobile Applications Development toolsLonzo2009-01-20T12:53:12Z2009-10-12T00:00:02Z
<p>Besides Java's J2ME are there other open source development tools for mobile applications.</p>
http://stackoverflow.com/questions/1540467/determining-smartphone-non-smartphone-for-php0Determining Smartphone / Non-Smartphone for phpFrederico2009-10-08T21:02:23Z2009-10-08T21:10:12Z
<p>It seems like facebook has this mastered, I've checked a bit into WURFL but this seems like an extremely expensive process. I've also checked out: <a href="http://mobiforge.com/developing/story/lightweight-device-detection-php" rel="nofollow">url</a> link. While it has a good list of user agents, I'm trying to identify which are smart phones and which are not.</p>
<p>facebook pushes the non-smart phones to a different site than their smart phones. Trying to see if there was an easy way to do this.</p>
http://stackoverflow.com/questions/1496568/working-with-contact-list-in-symbian-and-windowsmobile-in-a-nutshell1Working with contact list in Symbian and WindowsMobile in a nutshellRoman2009-09-30T07:23:14Z2009-10-05T15:45:37Z
<p>I've never developing anything for mobile platforms yet. But now I need an app, that can perform basic read/write/update operations with contact list. </p>
<p>It should work in Symbian and WinMobile, but it's normal if we have 2 different applications (but if it's possible then I prefer to make only one). In first version it's not even necessary to make GUI. I just want to download and install and start the app, and it will exit after finishing. </p>
<p>What instruments (which IDE, what simulators and so on) should I have to develop this app? I know Java, but I've never used J2ME so if it's easier to use something .net-based or something cpp-based, then it's ok.</p>
<p>Another question: working with contact list is platform specific or concrete cellphone-specific?</p>
http://stackoverflow.com/questions/1504140/converting-from-a-text-field-to-an-numeric-in-android0Converting from a text field to an numeric in Android brass-kazoo2009-10-01T14:00:20Z2009-10-03T04:33:00Z
<p>If I have an EditText component on my screen that I have specified <code>inputType="decimal"</code> for (i.e. a numeric/decimal field), what is the best way to convert it to an decimal value in the application code?</p>
<p><img src="http://codingbone.files.wordpress.com/2009/10/android-decimal.png" alt="Numeric EditText" /></p>
<p><a href="http://developer.android.com/guide/practices/design/performance.html#avoidfloat" rel="nofollow">Google recommends</a> avoiding <code>float</code>s, and avoiding creating objects unnecessarily (and I assume any auto-unboxing code is bad too), so I take these as my constraints. I realise a small application probably doesn't need to worry too much, but I haven't been able to find a 'best-practice' solution to this.</p>
<p>The most common solution appears to be this:</p>
<pre><code>double value = Double.parseDouble(txtInput);
</code></pre>
http://stackoverflow.com/questions/902056/what-are-the-differences-between-t-mobile-g1-branded-htc-dream-and-googles-adp7What are the differences between T-Mobile G1 (branded HTC Dream) and Google's ADP1 (device for developers)?Vitaly Polonetsky2009-05-23T17:55:01Z2009-05-24T07:48:32Z
<p>I was searching the internet but could not find a site comparing the two. I'm interested in developing for the android platform. G1 seems to be just the same as ADP1, but is there any small changes that will be noticeable in development?</p>
<p>How about 3rd party software? What T-Mobile software exists in G1 which is not part of the ADP1 bundle and vice versa?</p>
<p>Can I swap the original ADP1 firmware with T-Mobile branded one? As I understand people can already hack the G1 to run ADP1's non-branded firmware.</p>
http://stackoverflow.com/questions/416451/symbian-c-load-and-display-image-from-mbm-file0Symbian C++ - Load and display image from .mbm fileadam2009-01-06T13:11:50Z2009-03-26T10:15:22Z
<p>I have a .mbm file that I copy to my device using this line in the .pkg file</p>
<pre><code>"$(EPOCROOT)epoc32\data\z\resource\apps\MyApp.mbm" -"!:\resource\apps\MyApp.mbm"
</code></pre>
<p>Then in the draw function of my container I do this..</p>
<pre><code>_LIT(KMBMFile , "\\resource\\apps\\MyApp.mbm" );
CFbsBitmap* iBitmap;
iBitmap->Load(KMBMFile, 0);
gc.BitBlt(Rect().iTl, iBitmap);
</code></pre>
<p>However the line <code>iBitmap->Load(KMBMFile, 0);</code> raises a KERN-EXEC:0 PANIC</p>
<p>"This panic is raised when the Kernel cannot find an object in the object index for the current process or current thread using the specified object index number (the raw handle number)."</p>
<p>Can anyone spot where I am going wrong?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/625567/net-vs-java-for-mobile-development-whats-your-take3.Net vs Java for mobile development. What's your take?Konstantinos2009-03-09T09:36:17Z2009-03-11T08:05:12Z
<p>Hi there, </p>
<p>I am developing mobile apps for some time in .NET and I was always wondering if the grass is greener on the other side (Java).</p>
<p>Thus, I would like to ask your opinion about which one you prefer for your mobile apps and why is that so.</p>
http://stackoverflow.com/questions/557527/large-xml-file-xmldocument-not-feasible-but-need-to-be-able-to-search3Large XML file, XmlDocument not feasible but need to be able to searchJ M2009-02-17T16:02:27Z2009-03-09T15:54:27Z
<p>I am struggling with a sensible logic loop for stripping out nodes from an XML file too large to use with XPath supporting .NET classes.</p>
<p>I am attempting to replace the single line of code I had (that called SelectNodes with an XPath query string) with code that does the same but uses an XmTextReader.</p>
<p>I have to go several levels down as illustraed by the previously used XPath quey (which was for reference):</p>
<pre><code>ConfigurationRelease/Profiles/Profile[Name='MyProfileName']/Screens/Screen[Id='MyScreenId']/Settings/Setting[Name='MySettingName']
</code></pre>
<p>I thought this would be annoying but simple. However, I just can't seem to get the loop right.</p>
<p>I need to get a node, check a node under that to see if the value matches a target string and then walk down further if it does or skip that branch if it does't.</p>
<p>In fact, I think my problem is that I don't know how to ignore a branch if I'm not inetersted in it. I can't allow it to walk irrelevant branches as the element names are not unique (as illustrated by the XPath query).</p>
<p>I thought I could maintain some booleans e.g. bool expectingProfileName that gets set to true when I hit a Profile node. However, if its not the particular profile node I want, I can't get out of that branch.</p>
<p>So...hopefully this makes sense to someone...I've been staring at the problem for a couple hours and may just be missing something obvious.....</p>
<p>I'd like to post a portion of the file up but can't figure out how so the structure is roughly:</p>
<pre><code>ConfigRelease > Profiles > Profile > Name > Screens > Screen > Settings > Setting > Name
</code></pre>
<p>I will know ProfileName, ScreenName and SettingName and I need the Setting node.</p>
<p>I am trying to avoid reading the whole file in one hit e.g. at app start-up because half the stuff in it won't ever be used. I also have no control over what generates the xml file so cannot change it to say, produce multiple smaller files.</p>
<p>Any tips will be greatly appreciated.</p>
<p>UPDATE</p>
<p>I have re-opened this. A poster suggested XPathDocument which should have been perfect. Unfortunatley, I didn't mention that this is a mobile app and XPathDocument is not supported.</p>
<p>The file isn't large by most standards which is why the system was originally coded to use XmlDocument. It is currently 4MB which is apparently large enough to crash a Mobile App when it is loaded into an XmlDocument. It's probably just as well it came up now as the file is epxected to get much bigger. Anyway, I am now trying the DataSet suggestion but am still open to other ideas.</p>
<p>UPDATE 2</p>
<p>I got suspiscious because quite a few people have said they would not expect a file this size to crash the system. Further experiments have shown that this is an intermittent crash. Yesterday it crashed everytime but this morning after I reset the device, I can't reproduce it. I am now trying to figure out a reliable set of reproductive steps. And also decide the best way to handle the problem which I'm sure is still there. I can't just leave it because if the app can't access this file, it is useless and I don't think can tell my users that they can't run anything else on their devices when my app is running.......</p>