For the regular menus, this isn't possible for 1.0.
You can try to return a custom menu view in the onCreatePanelView. This
will still use the menu decor and animations. Phone app actually does this
to fit the 8 items in.
You can handle the MENU button yourself.
2008/9/15 rajesh <[EMAIL PROTEC
I'm having this issue as well, only after having installed everything
just today to start developing.
Using Ubuntu Hardy
Eclipse SDK Version: 3.2.2
Build id: M20070212-1330 (Ubuntu version: 3.2.2-5ubuntu2)
Update Manager for Eclipse also seems to be taking an eternity to run
as well. Perhaps t
Any idea when RTSP will be fixed?
Or, at least some form of MP3 streaming? Happy to retrieve directly
via HTTP if necessary, but my app absolutely _requires_ live, ongoing
mp3 streaming at a minimum. It's strange to me that it wouldn't work,
given Android's out-of-the-box support for streaming vi
The thing is that their website does not have much documentaion. I saw
multiple posts related to ksoap2 here. So I was hoping there are
members of this group who are quite familiar wit these concepts. I
have done the following:
SOAP_ACTION="helloWorld"
NAMESPACE="http://localhost:9000";
METHOD_NA
On Fri, Sep 19, 2008 at 4:22 PM, William Chang <[EMAIL PROTECTED]>wrote:
>
> Quote:
> "... Android's Apache license allows phone companies to do pretty much
> whatever they'd like with their code. That means, if they chose to,
> companies like Verizon and Sprint could disable or enfeeble parts of
On Sep 18, 1:08 pm, hackbod <[EMAIL PROTECTED]> wrote:
> On Sep 18, 10:22 am, joebowbeer <[EMAIL PROTECTED]> wrote:
>
> > It may be safe to load resources in any process, but is it permitted?
>
> > Can any app load resources from any other app, with or without a
> > matching signature or sharedUse
Quote:
"... Android's Apache license allows phone companies to do pretty much
whatever they'd like with their code. That means, if they chose to,
companies like Verizon and Sprint could disable or enfeeble parts of
the system, and the "Android store" can be filtered to carry only
carrier-approved
No, there is no way to do this from XML. As we've said, shared
libraries are not supported for 1.0, and that is essentially what you
are trying to do (by binding your app to the other app, though
admittedly via resource references instead of code references).
On Sep 19, 10:00 am, Cheryl Sedota <
This is probably a bug in the Preferences framework, but I'm not
particularly familiar with the API and the documentation is a little
sparse, so I thought I'd check first...
Is there a restriction on the strings that can be used in the
entryValues array for a ListPreference?
I define the followi
Here's my suggestion:
If your code in dispatchTouchEvent can determine that the gesture is
empty, then you can call onListItemClick() within dispatchTouchEvent.
If the gesture is not empty, then do whatever you want to do.
On Sep 19, 2:45 am, Urakagi <[EMAIL PROTECTED]> wrote:
> Um, I want to use
> I was trying to create a soap client on android using ksoap2.
> Please help here.
Additional support for ksoap2 probably can be found at the ksoap2 site:
http://ksoap2.sourceforge.net/
--
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ Ver
I'm researching about Android. I find there is not "Zoom picture"
option in Android. Does anyone can help me to built an applicaion
about "Zoom picture" ?? Thank you.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "A
Same problem here. Is there a PERMISSION variable that must be set in
the manifest.xml file or something?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email
I need to write a file in XML format. There are a couple of parsers
available, but I cannot find anything useful for writing XML.
The task is a long-running process, so creating a DOM, then writing it
at the end would be waste of space, I need a stream-based writer that
adds lines of XML to the d
I am using DDMS to play a GPX file. The lat/long data arrives fine in
my application, but not the time.
I notice two things: first of all the time displayed in DDMS for the
start/end times of the GPX track is wrong, out by one month.
The first point in my track is in the GPX file like this:
I'm getting this same VerifyError:
WARN/dalvikvm(2026): VFY: unable to resolve static method 804: Lcom/
pocketjourney/view/util/HtmlUtils;.shortenHtml (Ljava/lang/
String;I)Ljava/lang/String;
WARN/dalvikvm(2026): VFY: rejecting opcode 0x71 at 0x0022
WARN/dalvikvm(2026): VFY: rejected Lcom/pocke
Hi,
I have this web service using apache cxf:
http://localhost:9000/helloWorld
with method
sayHi
Now I am using ksoap2 on client side in android. But I am not sure how
I should set the following variables:
private static final String SOAP_ACTION = "...";
private static final String ME
Does anyone know to turn off the Android mobile in the eclipse
simulator ?? I pressed at the power button (at the high-left corner)
but it doesn't work. Does the eclipse simulate it ?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the
HI,
I was trying to create a soap client on android using ksoap2. In every
sample code I read I found this:
private static final String SOAP_ACTION = "...";
private static final String METHOD_NAME = "...";
private static final String NAMESPACE = "...";
private static final String URL
Hi,
I dont know the meaning of these variables:
private static final String SOAP_ACTION = "...";
private static final String METHOD_NAME = "...";
private static final String NAMESPACE = "...";
private static final String URL = "...";
SoapObject request = new SoapObject(NAMESPACE, MET
web services security & e-business
http://www.freewebs.com/aerialwarf/
--~--~-~--~~~---~--~~
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@google
On 9月19日, 下午7時30分, drjunior <[EMAIL PROTECTED]> wrote:
> Hi,
>
> You need to implement the method public boolean
> onTouchEvent(MotionEvent event) in your view and then you can see the
> coordinates of touching point calling the function event.getX() and
> event.getY()...
>
> More information
Hi Dianne,
I was able to get a separate Context object that corresponds to the
common resources app using the createPackageContext API you
referenced. Is there any easy way to reference a resource from
another app in XML?
For example, to reference a drawable from the current app, you would
do s
What do you mean it is running in the background? The only reason you
should get an immediate cancel is if you used the NEW_TASK flag or B
is a singleTask or singleInstance launch mode, because in that case it
runs completely independently of its caller.
What are you trying to accomplish?
On Se
> I have written a subclass of EditText that has an
> onFocusChangeListener that brings up a keyboard on focus. I have view
> that uses this EditText that needs to register an
> onFocusChangeListener on the same EditText. Setting the listener in
> the view kills the listener that brings up the k
I can't speak to the actual hardware, being a curious developer like
yourself, but I have been playing with the OpenIntents simulator. The
simulator seems to adhere to the sensor output spec that Justin
referred to. Regarding your question about whether the orientation
sensor axis are the same a
Hi,
I have written a subclass of EditText that has an
onFocusChangeListener that brings up a keyboard on focus. I have view
that uses this EditText that needs to register an
onFocusChangeListener on the same EditText. Setting the listener in
the view kills the listener that brings up the keyboa
Ok , I found the solution:
I had to put the following piece of code:
this.setClickable(true);
simple or not? :)
2008/9/19 Peterman <[EMAIL PROTECTED]>
>
>
>
> Hi to all
>
> I have a problem with the maps in Android. I can create a map but
> since I update my sdk I can't do dragable my maps.
>
See SurfaceViewOverlay.java sample code.
On Fri, Sep 19, 2008 at 5:00 AM, Shraddha Bhaskare
<[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I need to know if 2D and 3D can co-exist on the same view.
> Can we have 2D and 3D views on the same screen?
>
> Thanks in advance
> Shraddha
>
> >
>
--~--~-
Hi to all
I have a problem with the maps in Android. I can create a map but
since I update my sdk I can't do dragable my maps.
Anybody knows what is the problem?
ciao
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Group
Bitmap.compress(...)
This will write the bitmap to an OutputStream, compressed as either JPEG or PNG
On Fri, Sep 19, 2008 at 6:07 AM, Teo <[EMAIL PROTECTED]> wrote:
>
> Hi, is there a way to save the bitmap to an image file (and also load
> one from an image file) ?
>
> I'm working on this SDK e
I have one SurfaceView in my application and when I hide my
SurfaceView and make visible my VideoView to play a Video, VideoView
use my SurfaceView to show the video...
I search in VideoView API but I do not found any method to associate
another SurfaceView to VideoView...
Someone know that issu
Hi,
You need to implement the method public boolean
onTouchEvent(MotionEvent event) in your view and then you can see the
coordinates of touching point calling the function event.getX() and
event.getY()...
More information here:
http://code.google.com/android/reference/android/view/MotionEvent
Thanks hackbod,
Instead animate SurfaceView, when I want to apply animation, I hide
the SurfaceView and in your place i put an ImageView with the "image"
in SurfaceView...
And then the animation play nicely...
Cheers..
On Sep 11, 11:02 pm, hackbod <[EMAIL PROTECTED]> wrote:
> Using animations w
Hi
Take a look at this code
I would like to thank the other member of the group who help getting
this code to work
thank you
mapView = (MapView) findViewById(R.id.map);
Drawable defaultMarker = getResources().getDrawable(
R.drawable.mappin_red);
// You HAV
Hi, is there a way to save the bitmap to an image file (and also load
one from an image file) ?
I'm working on this SDK example:
http://code.google.com/android/samples/ApiDemos/src/com/android/samples/graphics/TouchPaint.html
Thanks,
Teo
--~--~-~--~~~---~--~~
You
I want to get the coordinates of screen when I touch screen...
Because I want to use it to convert to lat/lon on map?
Anybody can help me?
thanks a lot
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Develo
Um, I want to use dispatchTouchEvent() to implement a gesture system,
so I have code like this:
public boolean dispatchTouchEvent(MotionEvent ev) {
boolean rtn = mGesture.onTouchEvent(ev);
if (ev.getAction() == MotionEvent.ACTION_UP) {
Yeah I m trying to do that.
I launch activity B from activity A. here B is Background Activity.
so when B gets launched by A I get the RESULT_CANCELLED but still my
Activity B is running in the background.
I want A to be capture or notify when B dies.
is that possible?
I tried with the RunningTaskI
Hi,
I need to know if 2D and 3D can co-exist on the same view.
Can we have 2D and 3D views on the same screen?
Thanks in advance
Shraddha
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
T
Hi All,
I am trying to insatll the ADT plug-in for Eclipse Ganymede 3.4 using
the archive path. I had provided the archive for installing the ADT.
It gives me an error stating some resource files are missing. When i
try to create a new project i get the following error:
The selected wizard could
hello friends..
I have several questions to ask..
1. Can i use the different API (e.g. Gdata or Flickr ) to develop any
Android application ?
2. Is the APK file work as Executable for Android phone?
3. Will my final application bind the API(jar) inside APK file? means
that APK file will automat
Hi
Somebody knows if exists a component in Android that represent a calendar
that can be showed in a screen. I want to say that this calendar has the
elements (days of the month, for example) and when you select a day a intent
is launched.
thanks
--~--~-~--~~~---~--~-
Hi,
I want to implement an animation in a ImageView inside a Dialog, but I can't
get the animation to actually animate.
Some code:
In Dialog.onCreate:
imageView.setBackgroundResource(R.anim.loading_anim);
And later on in onCreate:
AnimationDrawable frameAnimation = (AnimationDrawable)
image
Well yes, dispatchTouchEvent() dispatching touch events through the
view. If you do this:
@Override public boolean dispatchTouchEvent(MotionEvent ev) {
return super.dispatchTouchEvent(ev);
}
it will behave exactly the same as if you didn't override the method,
so I'm not sure what you mean
hi ,
You can use smack API for GTALK service
On Fri, Sep 19, 2008 at 12:24 PM, Song <[EMAIL PROTECTED]> wrote:
> I know that, I mean, besides the SDK, where can I find more document about
> GTalkService? Is there anyone can provide me a GTalk demo?
>
> 2008/9/19 Megha Joshi <[EMAIL PROTECTED]>
>
Hi, I have a class extending ListActivity, and I want to catch
touchevent on it so I override dispatchTouchEvent.
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
...
}
And since it's a ListActivity, of cource I want to override the
onListItemClick(), too:
@Override
protected void
If you use startActivityForResult(), you will get RESULT_CANCELED if
the launched activity crashes while it is running.
On Sep 18, 10:29 pm, wiki <[EMAIL PROTECTED]> wrote:
> Is there a way to capture the death event of one activity to another
> activity?
> say If two actitivities A and B are run
I know that, I mean, besides the SDK, where can I find more document about
GTalkService? Is there anyone can provide me a GTalk demo?
2008/9/19 Megha Joshi <[EMAIL PROTECTED]>
> Unfortunately, the GTalkService APIs have been removed from the sdk for
> security reasons.
>
> 2008/9/18 Song <[EMAIL
Anyone?
On Sep 9, 2:42 pm, elephantbug <[EMAIL PROTECTED]> wrote:
> Thanks Megha.
>
> I think my first question is:
>
> In the map application on Android, I can not only see thestreetview
> (blue outline on the map) but also I can click one location and launch
> thestreetview(like in Google Map).
Hi, Mark,
I will go and extend the Adapter for full flexibility. Thanks for your
recommendation.
--elephantbug
On Sep 18, 5:41 am, Mark Murphy <[EMAIL PROTECTED]> wrote:
> elephantbug wrote:
> > It works fine. Now my question is how to differentiate those populated
> > TextView? Do they have di
Hi Haruhisa,
Unfortunately, the emulator does not support Wi-Fi.
Jason
On Sep 18, 2008 10:51 PM, "Haruhisa Hasegawa" <[EMAIL PROTECTED]>
wrote:
Could you lend wisdom ..someone.. though in Windows XP/Vista, it is
using the Wi-Fi function?
Wanting to know is the following four points.
1.
I
52 matches
Mail list logo