[android-developers] Android TV Portrait App

2016-11-01 Thread Kamil Faheem Granjur
Hello everyone ! I am new in android development . I am building an app for Android TV . I already design the landscape layout but Android Studio is not allowing me to design Portrait Layout for TV ! Why is this happening ? Please help me with some solid detail(information). Thankyou in advanc

[android-developers] My acc terminated. Can I develop other apps on friend account together?

2016-05-02 Thread Kamil Florczyk
Hi everyone, this is my first post. My google play account has been terminated due to impersonation (several times). It's not 100% truth because my application was another. It was an unlucky accident when I had been trying to create good icon for app. I got ban because of that icon. Nevermind.

[android-developers] Android compass simple code do not work. How to fix it?

2016-03-10 Thread Kamil
I wrote application using this example https://www.javacodegeeks.com/2013/09/android-compass-code-example.html But it does not work. If I rotate the phone the image just twitch. I use Sony M2 (Android 4.4.4). How to write simple compass? -- You received this message because you are

[android-developers] Re: Native crash (SIGSEGV) in open gl texture load

2013-01-11 Thread Kamil Czajko
Did you ever manage to rectify this issue? I've only started having it happen in the last week or two occasionally and randomly on texture load -- 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] Re: Native crash (SIGSEGV) in open gl texture load

2013-01-11 Thread Kamil Czajko
Typically after posting this I noticed the race condition in my code ;) -- 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] Greetings

2012-03-22 Thread kamil
my questions, I will check the archives, who knows, the questions may already been answered. Thanks Kamil -- 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

[android-developers] Any quick start recipes for SQLite?

2012-03-22 Thread Kamil Dursun
file has not been created. Any ideas? Thanks Kamil -- 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

[android-developers] Re: how to save high-score in database

2012-02-11 Thread Kamil
Could you give us some code snippet or whole class? It'll be easier to find a bug in your application if you paste some info from logcat. On 11 Lut, 14:23, Mohd Arshi Khan arshikha...@gmail.com wrote: I want to save my game high-score with update existing user score in sqlite database. I'm

Re: [android-developers] Re: Documentation for the Android/Google TV YouTube player parameters

2012-02-07 Thread Kamil Javorcik
intent.setAction(android.content.Intent.ACTION_VIEW); Uri.parse( http://www.youtube.com/watch?v=VIDEO_ID.;); intent.setDataAndType(Uri.fromFile(file), application/vnd.android.package-archive); startActivity(intent); change uri 2012/2/6 Wiktor Gworek wiktor.gwo...@gmail.com Just

[android-developers] Re: Holding call programmatically

2011-11-15 Thread Kamil
So maybe some unofficial ways? On 14 Lis, 22:18, Mark Murphy mmur...@commonsware.com wrote: AFAIK, there are no APIs for this in the Android SDK, sorry. On Mon, Nov 14, 2011 at 3:13 PM, Kamil kmichal...@gmail.com wrote: Hi all, I'm developing VoIP application. I'd like to ask

[android-developers] Holding call programmatically

2011-11-14 Thread Kamil
Hi all, I'm developing VoIP application. I'd like to ask if there is some way to hold active GSM call programmatically? It's very important case in my app to hold gsm call when VoIP call is comming. Is it possible? Thanks -- You received this message because you are subscribed to the Google

[android-developers] Re: How safe to store database in sqlite?

2011-08-12 Thread Kamil
So, if you connect to database you can edit its records. AFAIK SQLite doesn't have any password set. Connecting to database gives you all permissions to whole database. On 12 Sie, 17:39, ndiiie 90 rnd...@gmail.com wrote: Hi guys, I wonder how safe to store sensitive data in sqlite in Android?

[android-developers] Re: Save data in file or db

2011-08-12 Thread Kamil
You should definitely use SharedPreferences. It's easy to save/read data from prefs. Moreover, everything you save into SharedPreferences will be stored in XML file placed in application directory, so you can easy check saved value. On 12 Sie, 12:17, Kristoffer kris.isak.v...@gmail.com wrote:

[android-developers] Re: Eclipse/ADT not rebuilding correctly

2011-05-07 Thread Kamil
I've noticed this issue not working with Android SDK but with J2EE project. In my case turning off autobuild option and cleaning whole project fixed problem. After this few steps automatic build can be switched to on again. I think this is IDE bug, so it should be reported to eclipse developers.

[android-developers] Microphone volume on Samsung Galaxy S

2011-04-15 Thread Kamil
Hello, I'm running CSipSimple library to stream voice through the SIP. It runs almost on every testing device. But there is some problem with Samsung Galaxy S. Microphone gets a lot of noises from space around. When I speak to phone person at the other side can't because of large overdrive. I have

[android-developers] Audio initialization and recording

2011-04-08 Thread Kamil
Hi, I'm having problem with audio initialization in Android. When application starts recording in logcat appears message I/libpjsip( 2248): 15:19:25.328 android_jni_de Record thread : error while reading data... is there something we can do here? -3 D/libpjsip( 2248): 15:19:25.328

[android-developers] Merged contacts problem

2011-03-25 Thread Kamil
Hi, I'm trying to get all phone numbers for contacts in my phonebook, but I've got some problem. If contacts are merged I get separated records with empty givenName and familyName. How can I get phone numbers from merged contacts? -- You received this message because you are subscribed to the

[android-developers] Menu typeface

2011-03-20 Thread Kamil
Hi, Is there any way to change menu typeface to bold? -- 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

Re: [android-developers] Creating SQLite DB

2011-03-15 Thread Kamil Michalak
Did you try this.getApplicationContext().openOrCreateDatabase(DATABASE_NAME, Context.MODE_PRIVATE, null); ? W dniu 14.03.2011 01:46, David Williams pisze: All, I am trying to create an SQLite DB but for some reason it's not working. My logic performs the following.

[android-developers] Re: passing arrays between classes using intent

2011-03-14 Thread Kamil
I think, you could use JSONArray to store data, convert JSON array to string and put it into extras. It's only way how to do it. Another way is to store arrays in different singleton object/static class or put data into SQLite database and read from other activity but it is not using Intent. On

[android-developers] Pressing hangup device button locks screen

2011-03-14 Thread Kamil
Hi, I'm using OnKeyListener in my app. Almost everything works fine, except device hangup button, which case locking device screen when it's pressed. Could somebody tell me how to unbind lock action or disable it? -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: How To Start a RTSP connection

2008-12-20 Thread kamil
testing to the customer ;D thanks Kamil --~--~-~--~~~---~--~~ 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

[android-developers] Re: How To Start a RTSP connection

2008-12-19 Thread kamil
in advance Kamil --~--~-~--~~~---~--~~ 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