[android-developers] EditText with bitmaps

2012-02-02 Thread Robert Slama
Hi guys, is any way how make edittext custumized as is on attached image? r^ -- 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 ema

Re: [android-developers] Users cannot install my application because of incorrect signing

2011-11-02 Thread Robert Slama
problem is happens when first app what is installed at handset was signed with diff key. Usually when u install apk to handset with dev key and then u try install that same apk but signed with production key. r^ On 2 November 2011 17:23, John Raftery wrote: > I used eclipse to compile and sign

Re: [android-developers] ltl doubt

2011-11-02 Thread Robert Slama
no way u can have just one manifest in apk On 2 November 2011 13:22, bhanu prasad wrote: > Is it possible to develop an application with two manifest xml > files > Thanks in advance!!! > > could u had done ever?? > > > -- > You received this message because you are subscribed to the Goog

Re: [android-developers] Re: date and time

2011-11-02 Thread Robert Slama
try add follow line before format to string : date.setTime(System.currentTimeMillis()); r^ On 2 November 2011 10:44, leigh8347 wrote: > The peice of code im using to disply the date and time is as follows > > datetime.toString() > > but like i said this does not update > regards > > > On Nov 2,

Re: [android-developers] How start youtube app with search terms

2011-11-01 Thread Robert Slama
Unfortunatlly its its not opening default youtube app but ask for action and outube app is not offered. If I call Intent.ACTION_VIEW with url what lead direct to any video YT app is started. r^ On 1 November 2011 03:27, TreKing wrote: > On Mon, Oct 31, 2011 at 12:52 PM, Robert Slama wr

Re: [android-developers] Screen Shot

2011-10-31 Thread Robert Slama
if u have handset connected to computer u ca use ddms r^ On 28 October 2011 16:46, vins wrote: > Anybody know how to take a screen shot of current screen using app and to > save that in a sd card > > -- > You received this message because you are subscribed to the Google > Groups "Android D

[android-developers] How start youtube app with search terms

2011-10-31 Thread Robert Slama
Hi guys, I'm looking for solution how I can start youtube activity with search terms. Can someone help me with that? Or ist possible start yt activity with that or not? Rob -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this g

Re: [android-developers] LogCat on Intellij IDEA

2011-06-29 Thread Robert Slama
I use version 10.5 and logcat is there ... r^ On 29 June 2011 13:17, Kostya Vasilyev wrote: > You can always use the host computer's command line window and run "adb > logcat" there. > > 29.06.2011 15:12, gaara пишет: >> >> hi group, >> i wanna to knwo how to get the functionality of the logcat

[android-developers] installation URL in apk

2011-06-16 Thread Robert Slama
Hi guys, exist any way how I can get URL from what was apk installed direct in instaled application? r^ -- 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 unsubscrib

Re: [android-developers] Rtsp Http Streaming

2011-05-30 Thread Robert Slama
hmmm i try open your url rtsp://strm-3.tr.medianova.tv/rkraltv/rkraltv with realplayer and with vlc and that stream is not available. Try u open stream in some player (on pc) before u test it on android? r^ On 26 May 2011 08:37, Filiz Gökçe wrote: > Hi, > I try to make live stream on android, >

[android-developers] Changin view on Activity

2009-05-01 Thread Robert Slama
Hi there, I have 1 activity class as entry point to application. There have 2 View (extends from SurfaceView) and I have problem with showing second view. First view is showed correctly but when I call setContentView(secondView) I getting exception W/System.err( 1241): java.lang.RuntimeExceptio

[android-developers] Re: URGENT!!!!! Can't update apps in android market!!!

2009-04-27 Thread Robert Slama
I was have that same problem and I resolved it with ... its located as first element in manifest r^ 2009/4/24 Yan Shi : > > When I upload an apk update for one of my apps(Hello Yahoo), I was > told that "Market requires the minSdkVersion to be set in > AndroidManifest.xml.". So I can't do the

[android-developers] Vibration class - ClassCastException

2009-04-27 Thread Robert Slama
Hi there, in my code I use (class Activity) follow contruct Vibrator vibrator = (Vibrator) getSystemService(context.VIBRATOR_SERVICE); but after start application is crashed with classcastexception. Can anybody help how I can create instance of Vibration class ? many thx r^ --~--~-~