Re: [android-developers] Enquiry

2011-04-11 Thread Marcin Orlowski
On 10 April 2011 20:40, rakshith raj wrote: > Hey good start is to in throgh the pro android and professional android > development book, download from 4shared.com > So you simply recommend stealing?! Regards, Marcin Orlowski *Tray Agenda * - keep you daily schedule ha

[android-developers] Re: move view on touch

2011-04-11 Thread Fina Perez
In this link http://blahti.wordpress.com/2011/02/10/moving-views-part-3/ you will have a really good tutorial about that. On Apr 11, 1:35 pm, "Y@g*E!s^H SARKAR" wrote: > i am using android-2.1, is it possible to move one view over other > view with finger touch on one screen? i am using framelayo

[android-developers] Re: Supporting xlarge screens in sdk 8

2011-04-11 Thread Zsolt Vasvari
You are compiling with the Level 11 libraries, right? On Apr 12, 10:41 am, Brill Pappin wrote: > I'm trying to allow support for xlarge screens using the compatibility > library. > The app is at min level 8 with a target of 11 (as per the Optimizing app for > android 3 article). > > However when

[android-developers] Re: Why self-signed digital signatures?

2011-04-11 Thread gjs
Hi, The value is that self signing is free, trusted CA is not. This was one of the major impediments of developing for j2me, Android removed this barrier. Regards On Apr 12, 1:44 am, Bob Kerns wrote: > If you protect your signing key, then it *does* prove that it was signed by > you, and not m

[android-developers] Re: Message Dialog appears, The market billing service is not available, Dungeons Sample, Although i have followed the steps given in documents.

2011-04-11 Thread Zsolt Vasvari
No, the whole point of a dynamically linked service is that you don't need to add permissions. On Apr 12, 1:53 pm, muhammad mahmood wrote: > I have confirmed the market version that is 2.3,4 on my device, also > added this line   android:name="android.permission.INTERNET"/> > > Is this line is re

[android-developers] Re: Message Dialog appears, The market billing service is not available, Dungeons Sample, Although i have followed the steps given in documents.

2011-04-11 Thread muhammad mahmood
I have confirmed the market version that is 2.3,4 on my device, also added this line Is this line is required.? On Apr 11, 7:27 am, ishihata wrote: > Hello, > > Did you confirm the version of the market app? > To use In-app Billing, the market app must be version 2.3.4 or upper. > I think that

[android-developers] Re: Logcat debug level --help

2011-04-11 Thread Yash Jain
Hello All, Thanks for your inputs, Filtering of log message helped me lot to debug. Regards, Yash. -- Forwarded message -- From: Michael Date: Thu, Apr 7, 2011 at 7:01 PM Subject: [android-developers] Re: Logcat debug level --help To: Android Developers try adb logcat *:e On

[android-developers] Re: Why self-signed digital signatures?

2011-04-11 Thread Bob Kerns
If you protect your signing key, then it *does* prove that it was signed by you, and not modified by someone else. The difference between a cert signed by a trusted CA and one signed by you is simply this: With a trusted CA, they can ask the trusted CA whether that's you or not. With a self-sig

[android-developers] to retrieve images

2011-04-11 Thread yogeshkumar tiwari
Hi, I'm new in android development, i want to match the images which is stored in database with image which is in asset folder, if match take place then i have to display the image in image view. please any one suggest me the answer. if possible give me the source code. Th

[android-developers] Re: Message Dialog appears, The market billing service is not available, Dungeons Sample, Although i have followed the steps given in documents.

2011-04-11 Thread muhammad mahmood
Yes market version is 2.3.4 on my device. I noticed that this line is missing in manifest.xml; Is this can be the reason for that message dialog? Please confirm. Thanks On Apr 11, 7:27 am, ishihata wrote: > Hello, > > Did you confirm the version of the market app? > To use In-app Billing, the

[android-developers] How to Access SIM Card

2011-04-11 Thread spurwa
Dear All, Does anyone can explain how to access the SIM Card. In some references I read that I should use SAT (SIM Application Toolkit) how do i use that thing? because I am looking for some tutorials do not explain in detail what the SAT .. Thanks, i wait for reply -- You received this mes

[android-developers] error with Trafficstats

2011-04-11 Thread Sarath Krishna
Hi, When I tried to use the TrafficStats class of android.net package in the following way long sent = TrafficStats.getMobileRxBytes(); I got the below error 04-11 22:12:06.449: ERROR/AndroidRuntime(2916): java.lang.NoClassDefFoundError: android.net.TrafficStats 04-11 22:12:06.449: ERROR/Andro

Re: [android-developers] Read send sms

2011-04-11 Thread XiaoXiong Weng
Um. I believe the intent for sms allows you to see the status, so you would get a status code for every message sent. On 4/11/2011 11:09 PM, Mochamad Basofi wrote: > Hello groups, > > I wonder if there is a way to read sms that being send at the time? > I've googled for a few days yet there is stil

[android-developers] Read send sms

2011-04-11 Thread Mochamad Basofi
Hello groups, I wonder if there is a way to read sms that being send at the time? I've googled for a few days yet there is still no answer. Any answers will be very helpful. Thank you very much. -- You received this message because you are subscribed to the Google Groups "Android Developers" gr

[android-developers] Upgrading Database from Assets

2011-04-11 Thread Petar K.
Hello, I have an app that contains a database that is read from the assets folder the first time the app is run. This works perfectly. My issue is that my database has changed since the last release (i have changed the table structure around) I put the new version of my db file in the assets folde

Re: [android-developers] Why self-signed digital signatures?

2011-04-11 Thread Dianne Hackborn
Android's security architecture is built around this. It doesn't matter *who* you are, but that the author of one .apk is the *same* *as* the author of another. On Mon, Apr 11, 2011 at 7:50 PM, RLScott wrote: > Coming from the Windows Mobile and iPhone development environments, I > am familiar

[android-developers] Why self-signed digital signatures?

2011-04-11 Thread RLScott
Coming from the Windows Mobile and iPhone development environments, I am familiar with code signing linked to a trusted Certificate Authority. But I don't understand what value there is in a self- signed signature, especially if an app is to be distributed independently of the Android Market. If

[android-developers] Re: How to check network is present or not

2011-04-11 Thread Brill Pappin
You can check that right from the API, and there are a ton of examples around (google search is your friend, and you should have checked before asking). However that doesn't actually mean you have a valid connection outside the network your on. For that you'r going to have to actually attempt t

[android-developers] Supporting xlarge screens in sdk 8

2011-04-11 Thread Brill Pappin
I'm trying to allow support for xlarge screens using the compatibility library. The app is at min level 8 with a target of 11 (as per the Optimizing app for android 3 article). However when I try to add the supports-screens and include the android:xlargeScreens i get an error because level 8 do

Re: [android-developers] "No such file or directory" when storing a file in sdcard.

2011-04-11 Thread TreKing
On Mon, Apr 11, 2011 at 8:16 PM, Alaeddine Ghribi wrote: > here is the log message: > 04-12 03:08:59.084: DEBUG/IOException(2059): No such file or directory > > What's the problem? > My guess is that there is no such file or directory. Since you have not indicated which file in your blob of code

Re: [android-developers] Crash after receiving an admob ad..

2011-04-11 Thread TreKing
What exactly do you want us to do with a giant stacktrace of your code? Besides tell you to read it since it tells you exactly what went wrong? - TreKing

Re: [android-developers] How to create a split view for an SMS chat application?

2011-04-11 Thread TreKing
On Sun, Apr 10, 2011 at 4:38 PM, BillyJoel wrote: > My question is how would even go about implementing such a layout? > Read the documentation on the various layouts. Play with some examples on using each one. Learn how each one works, and play around with the tools to lay them out visually. Le

Re: [android-developers] Introduction to android .

2011-04-11 Thread Michael Franz
Try Learning Android by Marko Gargenta http://ofps.oreilly.com/titles/9781449390501/ http://oreilly.com/catalog/0636920010883?cmp=il-orm-ofps-lrnandroid On Mon, Apr 11, 2011 at 7:17 PM, TreKing wrote: > On Mon, Apr 11, 2011 at 1:59 AM, kaushik p wrote: > >> Can anybody suggest me a good book

Re: [android-developers] Show /Hide Information in List

2011-04-11 Thread TreKing
On Mon, Apr 11, 2011 at 2:02 AM, junaidmohiuddin88 < junaidmohiuddi...@hotmail.com> wrote: > i don't get idea how to achieve it > What have you tried? - TreKing

Re: [android-developers] Introduction to android .

2011-04-11 Thread TreKing
On Mon, Apr 11, 2011 at 1:59 AM, kaushik p wrote: > Can anybody suggest me a good book for learning the key concepts of android > like - setting up android environment, develop basic application and how to > add different packages . You can do all that with the documentation.

Re: [android-developers] Need help on drag and drop

2011-04-11 Thread TreKing
On Mon, Apr 11, 2011 at 4:11 AM, aneesh bhadran wrote: > So Can any one send me simple drag and drop example layout designed using > xml No, sorry, this group is not here to do your work for you. So Can you try making an effort? --

Re: [android-developers] How to check network is present or not

2011-04-11 Thread TreKing
On Mon, Apr 11, 2011 at 4:26 AM, Zhagan wrote: > How to check whether N/W is present or Not in the device using Code.?? 1 - Go the documentation. 2 - Find the search box in the upper right. 3 - Start typing a query. In this case, for example, "network". 4 - Watch as the page filters your result

Re: [android-developers] How to sort search results?

2011-04-11 Thread TreKing
On Sun, Apr 10, 2011 at 1:55 PM, jverner wrote: > Can someone point me to a page or explain how to makes the search results > display in numeric or alphabetical order ad determined by the file name in > html? > http://developer.android.com/reference/java/util/Comparator.html

Re: [android-developers] Is possible to Use the 3.5mm JACK

2011-04-11 Thread Mark Murphy
On Mon, Apr 11, 2011 at 8:43 AM, Thibaud Ringenbach wrote: > Hello All, > > being a french developer, i need in my app to have 3 external buttons > of the phone. It could be buttons of an headset pluged on the 3.5mm > JACK. is that possible to intercept the play/next/prev buttons in > order to lau

Re: [android-developers] Building kernel and loading with Emulator

2011-04-11 Thread Mark Murphy
On Sun, Apr 10, 2011 at 11:16 PM, Santosh K R wrote: >     I am new to Android but i have experience with linux device driver. > I want to finally write a driver and a small apllication to use this driver. > > For this first i wanted to first compile the kernel and load using the > Emulator. This

Re: [android-developers] Re: Testing with Activity Monitor

2011-04-11 Thread Dianne Hackborn
So that's the intent you need to intercept -- CALL and the "tel:" scheme. Also of course the DEFAULT category. On Mon, Apr 11, 2011 at 5:41 PM, Brian Phagan wrote: > 04-12 00:38:32.894: INFO/ActivityManager(59): Starting activity: > Intent { act=android.intent.action.CALL dat=tel:5733415688 > c

[android-developers] Re: DatabaseUtils.InsertHelper SQLiteConstraintException when executing insert

2011-04-11 Thread Art
Oops, I was a bit too imprecise there. The ID from the SMS examples becomes the NATIVE_ID column value. I'm not entering a new value for the primary key for each entry at all. Does that make more sense? On Apr 11, 3:07 pm, Kostya Vasilyev wrote: > Right. You've set _id as the primary key, so tryi

[android-developers] "No such file or directory" when storing a file in sdcard.

2011-04-11 Thread Alaeddine Ghribi
Hi, I want to store a file from internal storage to external storage (sdcard) however, i'm facing a problem: here is the log message: 04-12 03:08:59.084: DEBUG/IOException(2059): No such file or directory What's the problem? Thank you for your help. public void transfer(){ try {

[android-developers] Re: Testing with Activity Monitor

2011-04-11 Thread Brian Phagan
04-12 00:38:32.894: INFO/ActivityManager(59): Starting activity: Intent { act=android.intent.action.CALL dat=tel:5733415688 cmp=com.android.phone/.OutgoingCallBroadcaster } On Apr 11, 7:28 pm, Dianne Hackborn wrote: > What do you see in the log as the actual intent being started? > > > > > > > >

Re: [android-developers] Re: Testing with Activity Monitor

2011-04-11 Thread Dianne Hackborn
What do you see in the log as the actual intent being started? On Mon, Apr 11, 2011 at 5:24 PM, Brian Phagan wrote: > I have added the category to the intent filter, but still no luck. > Code now looks like this: > > public void test2Launches() { >Instrumentation instr = getInstr

[android-developers] Re: Testing with Activity Monitor

2011-04-11 Thread Brian Phagan
I have added the category to the intent filter, but still no luck. Code now looks like this: public void test2Launches() { Instrumentation instr = getInstrumentation(); IntentFilter callFilter = new IntentFilter(Intent.ACTION_CALL); callFilter.addCat

[android-developers] alloc buffer size for video

2011-04-11 Thread cervello
I'm encoding a video but I need to find which buffer size I should allocate for the video.. I found a code but 10 isn't enough for some videos with large size. HOw can I find the optimum size? And I couldn't understand how I can allocate a buffer size for a video? Which preferences of a video

Re: [android-developers] Re: Testing with Activity Monitor

2011-04-11 Thread Dianne Hackborn
Your intent filter also needs to handle CATEGORY_DEFAULT. This should be the exact same thing you would put in the manifest to handle an intent. On Mon, Apr 11, 2011 at 4:43 PM, Brian Phagan wrote: > The Dialer activity is not blocked, it is allowed to launch. Also, > the assertEquals(1, monit

[android-developers] Re: Testing with Activity Monitor

2011-04-11 Thread Brian Phagan
The Dialer activity is not blocked, it is allowed to launch. Also, the assertEquals(1, monitor.getHits()) fails with a value of 0. On Apr 11, 6:27 pm, Dianne Hackborn wrote: > What is the error you are getting? > > > > > > > > > > On Mon, Apr 11, 2011 at 1:30 PM, Brian Phagan wrote: > > I am tr

Re: [android-developers] Testing with Activity Monitor

2011-04-11 Thread Dianne Hackborn
What is the error you are getting? On Mon, Apr 11, 2011 at 1:30 PM, Brian Phagan wrote: > I am trying to write unit tests for my application. I have a button > that initiates a call, and to test it I am trying to use an Activity > Monitor to block the call, but for some reason the call is allow

Re: [android-developers] Multiple copies of same resource in different folders

2011-04-11 Thread Dianne Hackborn
Um. So you are saying that you want the same image to be used for different densities, in such a way that it is not scaled but just drawn with its pixels 1:1 on the screen? If so, put it in drawable-nodpi/. If that is not what you want, I am having a hard time understanding your question. What

Re: [android-developers] help for encryption of sd card storage?

2011-04-11 Thread Xun Sun
Hi, On Mon, Apr 11, 2011 at 2:47 PM, Hitendrasinh Gohil wrote: > hi, > > I am downloading file from server and write this file to  sd card.now > i want to encrypt this file so that only my application can access > this file. > > i) if i can encrypt the file path only that can be access on > decry

[android-developers] How to create a split view for an SMS chat application?

2011-04-11 Thread BillyJoel
hey So I am trying to create a basic SMS chat application, and I want to have a UI screen similar to this: http://buchmoyerm.info/portfolio/images/ChatScreen.jpg Where I have my chat history listed above and my Send Message functionality below. My question is how would even go about implement

[android-developers] [Advice] Best way to handle background process

2011-04-11 Thread Cyril
Hi, I got my first android phone since two week And I'm starting my first real App. My phone is a LG Optimus 2X and one of the missing thing is a notification led for when there is a missed call, sms, email ect ... So I'm wondering what's the best way to do this. For know I've a broatcastreceive

[android-developers] Crash after receiving an admob ad..

2011-04-11 Thread SriramKS
04-10 04:13:53.395: INFO/Ads(6915): Received ad url: <"url": "http:// r.admob.com:80/ad_source.php? preqs=3&u_sd=1.5&u_w=480&slotname... 04-10 04:13:54.739: INFO/global(6915): Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k- ch

[android-developers] How to finger-draw over Picture and save painting only?

2011-04-11 Thread sticksen
I want to finger-draw over a Picture file and save the painting only (without the background picture). Also, the Picture and its overlay painting should be dragable und pinch-zoomable. How do I do it? Is Canvas the right way? Or ImageView, WebView etc? Cheers, Marc -- You received this message b

[android-developers] move view on touch

2011-04-11 Thread Y@g*E!s^H SARKAR
i am using android-2.1, is it possible to move one view over other view with finger touch on one screen? i am using framelayout as parent and linearlayout(which i want to move over screen) as child. which layout should i use for it? -- You received this message because you are subscribed to the G

[android-developers] jQuery Failed to Append DOM in Android Emulator

2011-04-11 Thread Topbit
Hi all, I am developing an HTML 5 based web application for mobile phones. In Android 2.2 or 2.3, I encountered a strange issue: When I try to append an HTML snippet to current web page, it might failed. It's not able to replicate on emulator every time. And it's hard to replicate on real phone.

[android-developers] RTSP lag

2011-04-11 Thread drg_c
Hi all devs, I'm currently working on a project which involves the rtsp streaming from an ip camera to an android device. The problem is that the stream has a very big delay, ~ 5 seconds, if you watch a stream from the internet I assume that is ok for the buffer, but for my kind of application is

[android-developers] Building kernel and loading with Emulator

2011-04-11 Thread Santosh
Hi, I am new to Android but i have experience with linux device driver. I want to finally write a driver and a small apllication to use this driver. For this first i wanted to first compile the kernel and load using the Emulator. Here is what i did. 1. Since I have 32 bit Ubuntu 10.10 insta

[android-developers] Testing with Activity Monitor

2011-04-11 Thread Brian Phagan
I am trying to write unit tests for my application. I have a button that initiates a call, and to test it I am trying to use an Activity Monitor to block the call, but for some reason the call is allowed to execute, causing the test to fail. My test case is written as follows: public void test2L

[android-developers] Re: Viewing SVG in Honeycomb webview

2011-04-11 Thread Neelav
I also have the same issue. On Apr 7, 4:43 pm, Thomas Tobin wrote: > Is there some special setting for a webview to allow it contain SVGs > in honeycomb? > We have web content that renders correctly in the web browser but the > SVG area doesn't render in a webview we create inside the app. > Sett

[android-developers] Is possible to Use the 3.5mm JACK

2011-04-11 Thread Thibaud Ringenbach
Hello All, being a french developer, i need in my app to have 3 external buttons of the phone. It could be buttons of an headset pluged on the 3.5mm JACK. is that possible to intercept the play/next/prev buttons in order to launch functions in my app?? Hope i can. Thanks a lot !! -- You receiv

[android-developers] Custom sensor

2011-04-11 Thread Micha Shepher
Hi, I need to implement a custom sensor and would like to which interface I need to implement. Is there an example showing how to do this? I do have C code that dumps accelerator readings on stdout which I could use. What I would like to do is to extend or implement SensorManager, SensorEventListe

[android-developers] Building kernel and loading with Emulator

2011-04-11 Thread Santosh K R
Hi, I am new to Android but i have experience with linux device driver. I want to finally write a driver and a small apllication to use this driver. For this first i wanted to first compile the kernel and load using the Emulator. Here is what i did. 1. Since I have 32 bit Ubuntu 10.10 insta

[android-developers] samples\android-11\ContactManager Document Sample Code Not Working

2011-04-11 Thread Sanoop
Hi List, I am trying Android SDK 3, API 11. I was trying to learn Content Provider with the example given in Samples. While running ContactManager I am getting NullPointerException - 04-12 00:25:07.379: ERROR/AndroidRuntime(541): at com.sanoop.ContactAdder.createContactEntry(ContactAdder.ja

[android-developers] How to add scrollbar...

2011-04-11 Thread Pax_Bat
- i have placed 3 table layouts on absolute view having height (height/ 3) for each filled horizontally one after other. - i want to make one of the layout scrollable (horizontally and vertically too). - So for that i have placed scroll view on the above table layout and add another table layout on

[android-developers] HTML5 canvas element highlights on click

2011-04-11 Thread Tom Orton
Hi all, In the android browser, when clicking on an HTML5 canvas element it highlights it for about a second. I have seen a few people recommend using the style -webkit-tap-highlight-color:rgba(0,0,0,0); to fix it but this doesn't seem to help. Has anyone come accross this problem? Do you have an

Re: [android-developers] FragmentBreadCrumbs

2011-04-11 Thread Dianne Hackborn
It is on the app package. You need to use android.app.FragmentBreadCrumbs. On Mon, Apr 11, 2011 at 11:00 AM, faah wrote: > I am getting an exception when using FragmentBreadCrumbs in a custom > action bar. The exception states: Caused by: > java.lang.ClassNotFoundException: android.view.Fragmen

Re: [android-developers] My first app

2011-04-11 Thread rakshith raj
Some redefinition is made in xml file, main xml file is created two times check ill out build failure occurded On Apr 10, 2011 11:59 PM, "anik" wrote: > Hi every one, > I just started with my android application but facing problem when i > build the application or when i run my application.Please

[android-developers] Add breadcrumbs for navigating backward through fragments

2011-04-11 Thread faah
http://hi-android.info/docs/sdk/android-3.0.html states "Add breadcrumbs for navigating backward through fragments". What is this and how can I implement this with a list in the action bar? Is there a sample around somewhere? -- You received this message because you are subscribed to the Google G

[android-developers] Show /Hide Information in List

2011-04-11 Thread junaidmohiuddin88
Hi I want to make a custom List that can show the information in a custom view area under the selected list item .i don't get idea how to achieve it please share u r any information regarding this issue. Regards Junaid Mohiuddin -- You received this message because you are subscribed to the

[android-developers] Introduction to android .

2011-04-11 Thread kaushik p
Hi all , I am kaushik Pendurthi , I have been developing mobile apps in the platforms like Meego before , Now i have started to develop apps on android. Can anybody suggest me a good book for learning the key concepts of android like - setting up android environment, develop basic application and

Re: [android-developers] Re: 3d engine advices

2011-04-11 Thread Joao Braga
Hey u guys! I'm also developing 2d game for android devices. I'm using canvas and so far the performance seems okey. I'm also considering using vector graphics ( just like flash does ) instead of sprites. Have you ever tried that? Any considerations for that approach? Regards, John 2011/4/11 eli

[android-developers] Re: 3D Image

2011-04-11 Thread Rin
i think this would help http://www.opentutorial.com/Make_3d_images On Apr 10, 5:28 am, khaled anaqwa wrote: > any one have a good tutorial how to create 3D image > form datarow -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to th

[android-developers] The "Blinking Activity of Death"

2011-04-11 Thread BoD
Hello, We have a problem in our app that happens very rarely - but I have witnessed it several times, on several devices and once on the Emulator. We currently do not know a way to reproduce it. It goes like this: you use the app normally, you click on an item or a button that starts an Activity (

[android-developers] Android simulator and telnet

2011-04-11 Thread ingy abbas
, Hey i'm just trying to connect android simulator via telnet to be apply to use gps location and i try to run it then write telnet in the console but i cant not write in the console any suggestion what to do .. thank in advance -- You received this message because you are subscribed to the Goo

[android-developers] How to sort search results?

2011-04-11 Thread jverner
I have an app that includes a number of html pages. It has a sort feature. Can someone point me to a page or explain how to makes the search results display in numeric or alphabetical order ad determined by the file name in html? For example, if pages 1.html, 2.html and 3.html all include the searc

[android-developers] regarding imports for rsa implementation with sms module

2011-04-11 Thread vivekdriffer
hi i am new here i just want to know what imports should be done for implementation of rsa(encryption) in my android apps. i am developing a encrypted sms sending module with that any one can send an encrypted msg with ur personal key and the receiver can only be able to see the msg if they have th

[android-developers] Multiple copies of same resource in different folders

2011-04-11 Thread Curtis
Hi, Looking for a nice solution to having a copy of an image in multiple res folder locations ie /res/xlarge-mdpi/border.png /res/hdpi/border.png /res/large-mdpi/border.png All these images are the exact same. Wanted to use the hdpi one for the tablet mdpi screens since it looks better. The onl

[android-developers] Re: Main Activity Launches On Stack Every Time Home Screen Icon Is Clicked

2011-04-11 Thread kaciula
Check out my answer (kaciula user) on this issue on stackoverflow.com: http://stackoverflow.com/questions/3042420/home-key-press-behaviour/4782423#4782423 I've filed a bug on b.android.com a couple of months ago but the bug report is still unnoticed. On Apr 9, 9:14 am, Tony Chuinard wrote: > My

[android-developers] Emulator stuck at goldfish_audio_write when starting a self compiled eclair image.

2011-04-11 Thread Finley Hale
Hello, I've compiled from git both latest version of Froyo and Eclair. Froyo works like a charm with the emulator using the sdk r10, however, Eclair is pausing problems. I am running the sdk on an Ubuntu 10.10 x86 from a Vmware virtual machine. When running the emulator with -debug-all, it is cl

[android-developers] Android simulator and telnet

2011-04-11 Thread ingy abbas
, Hey i'm just trying to connect android simulator via telnet to be apply to use gps location and i try to run it then write telnet in the console but i cant not write in the console any suggestion what to do .. thank in advance -- You received this message because you are subscribed to the Goo

[android-developers] FragmentBreadCrumbs

2011-04-11 Thread faah
I am getting an exception when using FragmentBreadCrumbs in a custom action bar. The exception states: Caused by: java.lang.ClassNotFoundException: android.view.FragmentBreadCrumbs in loader dalvik.system.PathClassLoader[/data/app/com.box.android-1.apk] FYI: I am building for sdk 3.0, with compati

[android-developers] DECT Implementation on Android phone

2011-04-11 Thread BRamirez
Hello, Currently, I use 100 cordless phone witch use the DECT (Digital Enhanced Cordless Telecommunications) and 20 Android phone (2.2 on HTC Desire). To exchange data (calls, messages...) with DECT phones, Android phones use a WLAN system (Wifi). This system is routed to the communication system

[android-developers] Need help on drag and drop

2011-04-11 Thread aneesh bhadran
Hi i am newbie to andriod. So Can any one send me simple drag and drop example layout designed using xml -- with regards @neesh bhadran -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developer

[android-developers] Re: Anyone feel like helping a poor pale student?

2011-04-11 Thread Rin
Hello there, by *died* did you mean the hard disk broke or just the computer wont start up? -RiN- On Apr 10, 11:55 pm, Tez wrote: > Hey everyone, > > I'm new to these forums, just drifted over from dreamincode. > > I'm writing my undergraduate dissertation on programming for the > Android platfor

[android-developers] Multitouch devices

2011-04-11 Thread amundsen
Hello, I would like to know which tablets can currently track more than two fingers. It seems to be the case of the Galaxy Tab and the Motorola Xoom, but what about other models ? Also, can any tablet track the size of the fingers rather than just the position ? Is this included in the SDK ? Tha

Re: [android-developers] Problem deploying app to orange sand francisco on windows7

2011-04-11 Thread rakshith raj
Best connect in ubuntu android is made for Linux only very easy to connect your phone in ubuntu, you use that On Apr 11, 2011 12:00 AM, "Penelope" wrote: > Hi, > > I have trawled the internet in search of suggestions about how i can > get round problems relating to connection of my phone to my pc,

Re: [android-developers] Problem deploying app to orange sand francisco on windows7

2011-04-11 Thread rakshith raj
Best connect in ubuntu android On Apr 11, 2011 12:00 AM, "Penelope" wrote: > Hi, > > I have trawled the internet in search of suggestions about how i can > get round problems relating to connection of my phone to my pc, and > why cmd 'adb devices' shows my phone as being offline. The most > promis

Re: [android-developers] Enquiry

2011-04-11 Thread rakshith raj
Hey good start is to in throgh the pro android and professional android development book, download from 4shared.com On Apr 11, 2011 12:03 AM, "Waseem Akram" wrote: > Dear Frnz, > > I am Waseem Akram. I had completed my B.E (Electronics & Communication ) > . I am interested to learn Android . What

[android-developers] MonoTouch?

2011-04-11 Thread RMH
Hi, I'm wondering what Android developers think of MonoTouch from Novell? Is it a good thing? A bad thing? Will MonoTouch be better than native Android development or worse? thanks, Richard -- You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] How to check network is present or not

2011-04-11 Thread Zhagan
Hi, How to check whether N/W is present or Not in the device using Code.?? I need to launch my application, it has to say me Network is present or not. Thanks for the help in advance. //Azn -- You received this message because you are subscribed to the Google Groups "Android Developers" group

[android-developers] Re: Emulator is crashing a lot

2011-04-11 Thread jtoolsdev
The 3.0 Emulator came up fast too. Maps my splash screen right side up but the main screen is upside down. In fact the whole screen (icons, title bar are upside down). Been cruisin' looking for bug reports and comments on that. Though I would think my products would do better on a tablet in lands

Re: [android-developers] DatabaseUtils.InsertHelper SQLiteConstraintException when executing insert

2011-04-11 Thread Kostya Vasilyev
Right. You've set _id as the primary key, so trying to insert a second "1" should fail. You can just leave out the value for _id when inserting, and a new, unique one will be assigned automatically (because of autoincrement). 12.04.2011 1:41 пользователь "Art" написал: > Hey all, > > I'm getting

[android-developers] Re: Device Admin - Email account policy enforcement - pop and exchange

2011-04-11 Thread progtad
Thanks Dianne for pointing that out. I'm going to need to dig into how the requirement (enforcement of corporate email policy) is being carried out on the iphone (iphone compliance has already been implemented, android is being considered for inclusion). My thought was that there would be somethi

Re: [android-developers] Fragment backstack and action bar

2011-04-11 Thread Dianne Hackborn
I wouldn't suggest doing that. I don't think a user expects that pressing on a tab means that pressing back will show the previous tab they were at. It seems to me you are going to just end up trying to mix two different navigation models and end up with a lot of band-aids over to try to hide the

[android-developers] DatabaseUtils.InsertHelper SQLiteConstraintException when executing insert

2011-04-11 Thread Art
Hey all, I'm getting this SQLiteConstraintException (error code 19: constraint failed) when using InsertHelper's prepareForInsert/bind/execute methodology. I'm trying to build a table including some imported SMS message information and I'm able to insert one entry per contact, but then I get the e

[android-developers] good open source/precanned reviews/rating solution for server side?

2011-04-11 Thread pawpaw17
I want to implement product reviews/ratings in my app. Anyone using an open source or precanned solution for this on the server side? Was hoping to avoid writing a web app for this from scratch. Any opinions or suggestions greatly appreciated. Thanks! pawpaw17 -- You received this message becau

[android-developers] Re: Android - Preventing Application data or files being deleted thru “Clear Data” settings option

2011-04-11 Thread Streets Of Boston
We have the same issue in my company's application. For now, we do not cache sensitive data and our app has no offline capabilities. Actually, security is not the major issue in our case. You can properly encrypt the cached data and that should be sufficient (as long as the app cannot be rever

Re: [android-developers] Re: Using Google Calendar API

2011-04-11 Thread New Developer
I have managed to get the Calendar.apk from my android phone But I can't get it into the emulators /system/app folderread-only or something like that I have the Calendar.apk in the /sdcard/Downloads directory any idea how I move this to the system/app folder or where do I put the a

[android-developers] Re: Android - Preventing Application data or files being deleted thru “Clear Data” settings option

2011-04-11 Thread Jacob
Thanks all for the response. Most of you have asked, why not delete the data / root the device etc. The answer is, 1) Devices are corporate devices. If rooted warranty is void. 2) App is to enforce the native security available on the device from 2.2 OS. While we do download secure data from our

[android-developers] Re: Compare MonkeyImage

2011-04-11 Thread Diego Torres Milano
You may find this post containing an example useful too: http://dtmilano.blogspot.com/2011/04/monkeyrunner-visual-image-comparison.html. The example is using MonkeyImage.loadFromfile() which I added for the reason you mentioned before. On Apr 8, 9:51 pm, Peddi Kanumuri wrote: > Thanks Bill ! > >

Re: [android-developers] Re: 3d engine advices

2011-04-11 Thread Leigh McRae
I looked around at engines at one point and libgdx was the best for targeting Android IMHO. The ability to develop most of your game on the PC is a ginormous advantage. Your work flow will be much, much better. The only thing I found with libgdx is that the engine made a wrapper around the O

Re: [android-developers] Re: Emulator is crashing a lot

2011-04-11 Thread Andrew Crichton
Well, I don't have problems with any of the other emulators at all, so I can't think of a reason for my system to be the problem. I would be interested to hear how you fair running the 3.0 emulator. -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Re: unwanted scrollbar is coming in gridview

2011-04-11 Thread pakistancan
try setting layout_weight --Ali -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googleg

[android-developers] Re: Emulator is crashing a lot

2011-04-11 Thread jtoolsdev
They would often take 3-4 retries on my 2.4 Ghz Ubuntu installation. So on Friday I built a 64-bit 3 core Ubuntu machine and now they all boot perfectly in 1 minute. Haven't run a 3.0 emulator on it yet. On Apr 11, 9:21 am, Andrew wrote: > I have also been experiencing issues with the honeycomb e

Re: [android-developers] Activity Restart On Rotate Phone

2011-04-11 Thread anik ralhan
hey can you please send me the steps that you followed,actually m also facing the same problem On Sun, Apr 10, 2011 at 2:56 PM, Me wrote: > Hi thanks group > I solved this one > > > > On Mon, Apr 11, 2011 at 1:34 AM, TreKing wrote: > >> On Sun, Apr 10, 2011 at 1:12 AM, Jons Jean wrote: >>

[android-developers] Re: how do i devlope an android keybord

2011-04-11 Thread Jens
The developer sample doesn't work anymore? http://developer.android.com/resources/samples/SoftKeyboard/index.html On 9 Apr, 21:13, ariel wrote: > so i will try to rephrase my question. > > how i can build a keybord. > > On Apr 9, 2:10 am, Spiral123 wrote: > > > hi Ariel. > > > can you rephrase

[android-developers] Re: Using Google Calendar API

2011-04-11 Thread Jens
If you cannot find precompiled APKs of the calendar and calendar provider (i.e. lift them from an actual Android device) you can build the platform yourself: http://source.android.com/source/initializing.html and build your own SDK - it should contain the APKs you're looking for. Optionally, you

  1   2   >