Re: [android-developers] Will android.permission.VIBRATE permission make my app invisible to tablets(in Android Market)?

2011-09-23 Thread kdı gjofd
Yes..it will be..and people will know to you want to use vibrate
service..İf people dont want to vibrate via app they wont download
it..So simple

2011/9/23, Kakyoin lgmc...@gmail.com:
 I've read about Android Market filtering which involve uses-feature
 tag. But what about permission?

 Will Android Market filter my app out if the device has no vibrator?

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: bitmap reuse via BitmapFactory.Options.inBitmap?

2011-09-23 Thread kdı gjofd
Thanks

2011/9/23, elliot elliot.nathan...@gmail.com:
 If anyone needs an example, here you go-

 public class BitmapReuseActivity extends Activity {

 private Paint mPaint = new Paint();
 private Rect mRect = new Rect(0,0, 123, 109);
 private Canvas mCanvas = new Canvas();
 private Bitmap mBitmap = Bitmap.createBitmap(124, 110,
 Bitmap.Config.ARGB_);
 private Resources mResources;

 private static BitmapFactory.Options sBitmapOptions =
 new BitmapFactory.Options();

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);

 setContentView(R.layout.bitmap_reuse_listview);

 mResources = getResources();

 // setup bitmap reuse options.
 sBitmapOptions.inBitmap = mBitmap;
 sBitmapOptions.inMutable = true;
 sBitmapOptions.inSampleSize = 1;

 // listview of 100 images.
 ListView listview =
 (ListView) findViewById(R.id.listView);

 listview.setAdapter(new BaseAdapter() {

 public View getView(int position, View convertView,
 ViewGroup parent) {

 ImageView imageView;

 if (convertView == null) {
 imageView = new
 ImageView(BitmapReuseActivity.this);
 } else {
 imageView = (ImageView) convertView;
 }

 // decode into existing bitmap.
 Bitmap bitmap =
 BitmapFactory.decodeResource(mResources,
   R.drawable.my_image, sBitmapOptions);

 if (bitmap != null) {
 imageView.setImageBitmap(bitmap);
 }

 return imageView;

 }

 public long getItemId(int position) {
 return 0;
 }

 public Object getItem(int position) {
 return null;
 }

 public int getCount() {
 return 100;
 }
 });

 }

 }

 Elliot

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] .html filed loading problem.how to i will solve it

2011-09-23 Thread kdı gjofd
yYes...you should enable javacsript..

2011/9/23, Chirag Raval chirag.android.develo...@gmail.com:
 Hi Shital

 Please try below code.

 WebView mWebView=(WebView)findViewById(R.id.mWebView);

  mWebView.loadUrl(file:///android_asset/html/raj.html);
             mWebView.getSettings().setJavaScriptEnabled(true);
             mWebView.getSettings().setSaveFormData(true);
             mWebView.getSettings().setBuiltInZoomControls(true);
             mWebView.setWebViewClient(new MyWebViewClient());

 private class MyWebViewClient extends WebViewClient
 {
     @Override
     //show the web page in webview but not in web browser
     public boolean shouldOverrideUrlLoading(WebView view, String url) {
         view.loadUrl (url);
         return true;
     }
 }




 On Fri, Sep 23, 2011 at 5:07 PM, shital suryawanshi
 shital.andr...@gmail.com wrote:

      WebView  mWebView =(WebView) findViewById(R.id.webView1);
      mWebView.loadUrl(file:///android_asset/html/raj.html);

 this 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] openmax framework android

2011-09-23 Thread kdı gjofd
i dont know what is openmax  :D


2011/9/23, ProblemZone navi44...@gmail.com:
 i want to integrate openmax framework android for media player , give
 me guide line for implement that one.

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Will android.permission.VIBRATE permission make my app invisible to tablets(in Android Market)?

2011-09-23 Thread kdı gjofd
Every android phones got vibrate but you want to use multitouch and
not every phone god multitouch..So android market will filter for
doesnt have multitouch feature

2011/9/24, Dianne Hackborn hack...@android.com:
 No, there is no vibration feature.  All of the features are defined in the
 PackageManager class here:
 http://developer.android.com/reference/android/content/pm/PackageManager.html

 On Fri, Sep 23, 2011 at 12:36 PM, Kakyoin lgmc...@gmail.com wrote:

 I've read about Android Market filtering which involve uses-feature
 tag. But what about permission?

 Will Android Market filter my app out if the device has no vibrator?

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




 --
 Dianne Hackborn
 Android framework engineer
 hack...@android.com

 Note: please don't send private questions to me, as I don't have time to
 provide private support, and so won't reply to such e-mails.  All such
 questions should be posted on public forums, where I and others can see and
 answer them.

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] My Android apps using 3D... FRAME count ?

2011-09-22 Thread kdı gjofd
hi.i developed 3D game..i tryed it my phone NEXUS ONE and works
fine..i am wonder that is it same performance other phones ?? Can i
fix Frames to 60 or more ??
Because when the frame getting bad swipe is getting hard..
Thank you and link :
https://market.android.com/details?id=metinogtem.iphone.dropoid

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: android.git.kernel.org is down

2011-09-22 Thread kdı gjofd
Yes .. it done..

2011/9/22, Chris crehb...@gmail.com:
 How is it under that rock you live under?

 It's been down for weeks and has been covered ad-nauseam.

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] App closed but notification is visible

2011-09-22 Thread kdı gjofd
Yes ... it will be..
You must cancel your notification via your notification ID..you gived
id for create it and you should use id for destroy..


2011/9/21, TreKing treking...@gmail.com:
 On Wed, Sep 21, 2011 at 2:03 AM, b_t bartata...@gmail.com wrote:

 Do you know how can it happen that my app is not running but
 the notification is visible and how to solve this problem?


 You didn't provide much information, but if you set the notification and
 never cancel it, well, it's not going away.
 This could happen if you set the notification in an Activity and then it's
 finished() or if you set it in a Service and it completes and exits.

 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Google Development phones

2011-09-22 Thread kdı gjofd
Nexus Prime will come..if you think to buy Nexus One..i god nexus
one..it is good for cpu but Multitouch and resuliton is problem..You
can look at youtube for multitouh problem..
Nexus S ... i didnt used it but good i think..
if you god money you can buy Nexus Prime if you can wait

2011/9/21, Christopher Van Kirk christopher.vank...@gmail.com:
 The original developer phone was the G1.

 Then came the Magic/G2.

 Then came the Nexus One.

 The current developer phone is the Nexus S, but it's an open question
 whether you really want to get one. The Nexus S is always closest to the
 bleeding edge of the phone operating system. The rest of the market,
 however, is still pretty far behind (I think something like 60% still
 runs Android 2.2, and if you look at Verizon's stable of phones, very
 few are  2.2). So if you're developing for mass consumption it might be
 better to get something a bit more retro.


 On 9/22/2011 12:17 AM, Kristopher Micinski wrote:
 The original development phone was the nexus one, however the concept
 of an official development phone hasn't been around for a long time,
 and people just generally use their own devices for development these
 days.  As long as you buy a nice device (for what you want to do with
 it) you should be fine, optionally one that you think you can quickly
 root.

 Kris

 On Wed, Sep 21, 2011 at 9:55 AM, kypriakosdemet...@ece.neu.edu  wrote:
 Hi all,

 the Market lists only one phone, the Nexus One and it says it is not
 longer
 available. Does that mean that Google is out of stock or does it mean
 that
 they are simply switching to a new phone and so this was off their
 pages?

 Thanks

 On Aug 18, 1:26 pm, Mark Ayersmarkthe...@gmail.com  wrote:
 The Nexus phones will always get updates quickest, though I'd be willing
 to
 bet that after the Nexus Prime, they will all be made by Motoogle.
 On Aug 18, 2011 6:06 AM, ColorTheoristcolortheorydevelo...@gmail.com
 wrote:







 Sorry, that was just a throwaway comment. Eventually Motorola will
 become the gold standard for Android phones due to their proximity to
 the software, but in the short term they're no different than any
 other
 device. If whoever it was needs a phone today any of the phones that
 are
 out there should be fine.
 That's not entirely true. Motorola phones are still on top of their
 updates faster than most other devices, while other cheaper phones
 might not receive updates at all, or take quite an extensive amount of
 time to get the newest releases. As a developer it is useful to get
 the newest updates in a timely manner if you plan on using them
 anywhere near the newest OS release.
 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Flash and Air and the marketplace

2011-09-22 Thread kdı gjofd
Not off course..Some phones doesnt have Flash..and flash is bad for
application..it  couse getting slow running..

2011/9/21, Josh foxvalleysoc...@gmail.com:
 Im curious if Flash android apps are getting accepted into the market
 place.

 Do they perform just as well as the apps designed in java?

 Just getting started not sure what direction to travel in.

 Josh

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: SqlLite Database

2011-09-22 Thread kdı gjofd
it is easy to create in programm...And you can olso use Firefox
plugin..You can import all sqlite databese

2011/9/21, lbendlin l...@bendlin.us:
 You can create databases with a number of tools. I use the mozilla Firefox
 browser and SQLite manager plugin

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Android is worst os mobile is this true

2011-09-22 Thread kdı gjofd
Yes..Linux Sax..But android seems good

2011/9/22, Peter Sinnott psinn...@gmail.com:


 On Sep 21, 10:41 pm, TreKing treking...@gmail.com wrote:
 On Wed, Sep 21, 2011 at 2:45 PM, Peter Sinnott psinn...@gmail.com wrote:
  On Sep 21, 2:47 am, Dianne Hackborn hack...@android.com wrote:
   Also, Android kills babies.

 Doesn't work for me. I guess it is another US only feature.



 You just have to throw harder.


 If I wanted to be told how to throw my own phone I would have bought
 an iPhone!

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] can we know the phone no of the device.

2011-09-22 Thread kdı gjofd
READ_PHONE_STATE permission you should add...
But if it is Tablet PC or mp4 player for android(not now) it will
return null..You can try catch block for good performance

2011/9/21, TreKing treking...@gmail.com:
 On Wed, Sep 21, 2011 at 2:46 AM, krishna chaitanya 
 chaitanya.ju...@gmail.com wrote:

 its showing the number in the emulator, but when ran on the device
 its giving null..


 http://developer.android.com/reference/android/telephony/TelephonyManager.html#getLine1Number()

 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Android is worst os mobile is this true

2011-09-22 Thread kdı gjofd
Arabic is support i think..Turkish language support after 2.3.3 but
Android Market and paid apss  is not supporting

2011/9/22, martypantsROK martyg...@gmail.com:
 what's wrong with your android phone? My can and does have Arabic.
 Mine can redial.
 Mine can do voice mail - although that's more a function of the
 carrier and not the phone.

 go wank on another message list.

 Oh and learn English

 On Sep 21, 4:02 am, wanyce ashoura wanyce...@gmail.com wrote:
 Yes i should say that
 Why because of more then one reason
 1- not support Arabic language at all meaning you need long time to
 get Arabic support
 in any kind of android Mobile's
 2- alot of futures not founded in android like what
 * redial .
 *voice mail .
 *gps navigator offline .
 * voice command offline .
 *proxy .
 * a lot of security issues .
 *suck in browsing web site's
 *crazy market request any program will some times downloaded and may
 will not or pause download .
 3- is android real free software and  open source i do not think so is
 near to windows mobile
 just android use linux kernel and java but is not cool at all
 4-blue tooth is crazy to used in android
 5-not support any thing we dream about it
 about me i am waiting for the best came from android from long time
 before
 and now i have no hope about this os because is just another low level
 mobile os like symbian or badi or windows
 low level meaning is not reach what we as user's wanted not is
 programing
 5- release 1.5 and 2.0 2.1 2.2 2.3 and jump to 3.0 3.1 3.2
 but what about other version's is them not deserve some of update's
 and improvement
 just jump like this ..
 ==
 i hope this e-mail reach real developer behind android and them start
 moving up and
 give us some hope to we can have mobile's can do what almost we
 wanted

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] When is onSurfaceCreated called??

2011-09-22 Thread kdı gjofd
You can integrate it from main.xml ..Create area for Surfaceview and
describe for your app..
Link by findViewById(R.id.surfaceview)  and use it..

2011/9/21, ruchira ruchira...@gmail.com:
 I am asking this question as I have been stuck with this issue for
 almost a month that the surface created function of my app is never
 called and I am stuck with it!!!

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: C2DM - phone send data back to Google Cloud (in addition to normal Cloud to Phone)?

2011-09-22 Thread kdı gjofd
can you give us example project ?? PLEASE

2011/9/22, Streets Of Boston flyingdutc...@gmail.com:
 Nope.
 The phone gets notified from C2DM if something happens.That's it.
 Then it's the task of your app to communicate (two-way if necessary) with
 your app's server.

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Activity Help

2011-09-22 Thread kdı gjofd
SQL prolem ..

2011/9/22, Derek Winstead derekwinste...@gmail.com:
 Here is my trace:

 09-22 10:28:09.341: WARN/ActivityManager(59): Activity idle timeout for
 HistoryRecord{450d4220 com.myMinistry/.gui.LiteratureEditor}
 09-22 10:28:14.575: DEBUG/dalvikvm(128): GC_EXPLICIT freed 908 objects /
 48408 bytes in 203ms
 09-22 10:29:11.155: DEBUG/SntpClient(59): request time failed:
 java.net.SocketException: Address family not supported by protocol
 09-22 10:29:49.635: DEBUG/dalvikvm(299): GC_FOR_MALLOC freed 3416 objects /
 255088 bytes in 69ms
 09-22 10:29:49.814: ERROR/Cursor(299): Finalizing a Cursor that has not been
 deactivated or closed. database =
 /data/data/com.myMinistry/databases/myministry, table = null, query = SELECT
 *  FROM literatureNames WHERE isActive = 1 AND typeID = 0 ORDER BY
 sortOrder,name
 09-22 10:29:49.814: ERROR/Cursor(299):
 android.database.sqlite.DatabaseObjectNotClosedException: Application did
 not close the cursor or database object that was opened here
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.database.sqlite.SQLiteCursor.init(SQLiteCursor.java:210)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.database.sqlite.SQLiteDirectCursorDriver.query(SQLiteDirectCursorDriver.java:53)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.database.sqlite.SQLiteDatabase.rawQueryWithFactory(SQLiteDatabase.java:1345)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.database.sqlite.SQLiteDatabase.rawQuery(SQLiteDatabase.java:1315)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 com.myMinistry.db.MinistryDatabase.fetchLiterature(MinistryDatabase.java:262)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 com.myMinistry.gui.LiteratureManager.fillData(LiteratureManager.java:68)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 com.myMinistry.gui.LiteratureManager.onResume(LiteratureManager.java:26)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1149)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.app.Activity.performResume(Activity.java:3823)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.app.ActivityThread.performResumeActivity(ActivityThread.java:3118)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3143)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2684)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.app.ActivityThread.access$2300(ActivityThread.java:125)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.os.Handler.dispatchMessage(Handler.java:99)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.os.Looper.loop(Looper.java:123)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 android.app.ActivityThread.main(ActivityThread.java:4627)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 java.lang.reflect.Method.invokeNative(Native Method)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 java.lang.reflect.Method.invoke(Method.java:521)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
 09-22 10:29:49.814: ERROR/Cursor(299): at
 dalvik.system.NativeStart.main(Native Method)
 09-22 10:29:50.006: ERROR/Cursor(299): Finalizing a Cursor that has not been
 deactivated or closed. database =
 /data/data/com.myMinistry/databases/myministry, table = null, query = SELECT
 SUM(total) FROM time time LEFT OUTER JOIN entryTypes types ON types._id =
 time.entryType WHER
 09-22 10:29:50.006: ERROR/Cursor(299):
 android.database.sqlite.DatabaseObjectNotClosedException: Application did
 not close the cursor or database object that was opened here
 09-22 10:29:50.006: ERROR/Cursor(299): at
 android.database.sqlite.SQLiteCursor.init(SQLiteCursor.java:210)
 09-22 10:29:50.006: ERROR/Cursor(299): at
 android.database.sqlite.SQLiteDirectCursorDriver.query(SQLiteDirectCursorDriver.java:53)
 09-22 10:29:50.006: ERROR/Cursor(299): at
 android.database.sqlite.SQLiteDatabase.rawQueryWithFactory(SQLiteDatabase.java:1345)
 09-22 10:29:50.006: ERROR/Cursor(299): at
 android.database.sqlite.SQLiteDatabase.rawQuery(SQLiteDatabase.java:1315)
 09-22 10:29:50.006: ERROR/Cursor(299): at
 com.myMinistry.db.MinistryDatabase.getTimeTotalNoRBC(MinistryDatabase.java:175)
 09-22 10:29:50.006: ERROR/Cursor(299): at
 com.myMinistry.gui.SummaryMonth.fillData(SummaryMonth.java:170)
 09-22 10:29:50.006: ERROR/Cursor(299): at
 com.myMinistry.gui.SummaryMonth.onResume(SummaryMonth.java:64)
 09-22 10:29:50.006: ERROR/Cursor(299): at
 android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1149)
 09-22 10:29:50.006: 

Re: [android-developers] Posibility of reading Wii controllers with bluetooth library?

2011-09-22 Thread kdı gjofd
yes..but i think i woundnt be possible

2011/9/21, tobiasbp tobia...@gmail.com:
 Hello group.

 I'm considering writing an app that would need to read data from Wii
 controllers. Is that possible out of the box with the SDK? Would I
 need a 3rd party library?

 Any suggestions much appreciated.

 Regards,
 Tobias

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: savedInstanceState always null

2011-09-22 Thread kdı gjofd
Android page says..You newer can handle Home button..it is easy to understant..
if you can handle home button you can newer close program..You always
start intent..That is bad for users..
For that you cant handle home button press...


2011/9/22, kaciula catalin.moro...@gmail.com:
 What you are experiencing is a known bug (at least known by me for
 over a year now). Check out my answer here
 http://stackoverflow.com/questions/3042420/home-key-press-behaviour/4782423#4782423

 I've also filed an issue a couple of months ago. The idea is that in
 some situations, after you press HOME and come back to the app, a new
 copy of the initial activity is created, instead of resuming the old
 one. Check out the details in the link provided.

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Tapping into full duplex audio stream from Bluetooth Headset or Handsfree Profiles?

2011-09-22 Thread kdı gjofd
maybe 3 party sdk will do it

2011/9/22, Jason jhoove...@gmail.com:
 Many embedded bluetooth chip providers advertise a full duplex audio
 connection to the mobile phone.  Is there a way to programmatically
 tap into that full duplex stream?  It seems to me thus far that the
 HSP and HFP bluetooth profiles are tightly integrated into the Android
 Phone app, and there is no apparent way to access the stream.  Ideally
 I would like to send and receive audio between a bluetooth earpiece,
 for example, and my Android device.  Think of this like a walkie-
 talkie app between the earpeice and the phone.  Can this be done?
 Anyone have any code snippets of how to do this?

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en