[email protected] wrote:

>=============================================================================
>Today's Topic Summary
>=============================================================================
>
>Group: [email protected]
>Url: http://groups.google.com/group/android-developers/topics
>
>  - onTouchEvent not called on every touch motion [1 Update]
>    http://groups.google.com/group/android-developers/t/b86e9ad461300031
>  - Get Data from Database of selected Item [11 Updates]
>    http://groups.google.com/group/android-developers/t/7503addce0f118c2
>  - Using chimpchat [1 Update]
>    http://groups.google.com/group/android-developers/t/3ec44a08d8b05acf
>  - Can 'Recent' item's bind intent be changed ? [2 Updates]
>    http://groups.google.com/group/android-developers/t/cb277bffc252c1f7
>  - Screenshot capture [1 Update]
>    http://groups.google.com/group/android-developers/t/3d3d7ca332da4f17
>  - How to create custom softkeyboard ?? [2 Updates]
>    http://groups.google.com/group/android-developers/t/7627e3d657992d66
>  - complieStatement(INSERT) crashing my app?? [1 Update]
>    http://groups.google.com/group/android-developers/t/a8d893af8241203e
>  - What is the sorting order on Android Market? [2 Updates]
>    http://groups.google.com/group/android-developers/t/631e68418df77b11
>  - Android Honeycomb CheckBox against white background cannot be seen [1 
> Update]
>    http://groups.google.com/group/android-developers/t/a2cd2aac630e2a87
>  - Ynt: Gallery view image zoom option in multi touch.. [1 Update]
>    http://groups.google.com/group/android-developers/t/28be8fa0dec3e690
>  - Ridiculous Publisher Stats - Anyone had enough??? [1 Update]
>    http://groups.google.com/group/android-developers/t/66dc73ea9d1794d8
>
>
>=============================================================================
>Topic: onTouchEvent not called on every touch motion
>Url: http://groups.google.com/group/android-developers/t/b86e9ad461300031
>=============================================================================
>
>---------- 1 of 1 ----------
>From: "[email protected]" <[email protected]>
>Date: Sep 18 11:14PM -0700
>Url: http://groups.google.com/group/android-developers/msg/e0fac14d0c4fe750
>
>Historical data for motion events helped! Thank you Blake!
>
>
>
>
>=============================================================================
>Topic: Get Data from Database of selected Item
>Url: http://groups.google.com/group/android-developers/t/7503addce0f118c2
>=============================================================================
>
>---------- 1 of 11 ----------
>From: Bishan <[email protected]>
>Date: Sep 19 10:27AM +0530
>Url: http://groups.google.com/group/android-developers/msg/8bcbe9b5379aa00d
>
>I have wrote a program to get students names from database and display
>them, using ListActivity. and used OnItemClickListener to click on
>each items.
>
>now i want to do, when i click on a student name, display other
>information of student (age, sex, address) on another screen.
>
>how could i do this?
>
> pls guide me.
>
>
>---------- 2 of 11 ----------
>From: Krishna Prasad <[email protected]>
>Date: Sep 19 10:32AM +0530
>Url: http://groups.google.com/group/android-developers/msg/1e32fb097a138c4
>
>@Override
>            public void onItemClick(AdapterView<?> parent, View arg1, int i,
>                    long l) {
>                try {
>
>                    SimpleCursorAdapter simpleCursorAdapter =
>(SimpleCursorAdapter) parent
>                            .getAdapter();
>                    final Cursor cursor = simpleCursorAdapter.getCursor();
>
>                    final int idColIndex = cursor.getColumnIndex("_id");
>
>Save the value in a variable  and use bundles
>
>
>Bundle bundle = new Bundle();
>                    bundle.putString("any name",Id);
>
>                    Intent intent = new Intent(first activity.this,
>                            second activity.class);
>                    intent.putExtras(bundle);
>                    startActivity(intent);
>
>
>
>---------- 3 of 11 ----------
>From: Krishna Prasad <[email protected]>
>Date: Sep 19 10:33AM +0530
>Url: http://groups.google.com/group/android-developers/msg/395f5e09736ff6c3
>
>i think ,you got it..
>
>On Mon, Sep 19, 2011 at 10:32 AM, Krishna Prasad <
>
>
>---------- 4 of 11 ----------
>From: Bishan <[email protected]>
>Date: Sep 19 10:33AM +0530
>Url: http://groups.google.com/group/android-developers/msg/dcea9775fd30e082
>
>thanx Krishna :)
>
>
>
>---------- 5 of 11 ----------
>From: Krishna Prasad <[email protected]>
>Date: Sep 19 10:36AM +0530
>Url: http://groups.google.com/group/android-developers/msg/6efeaf301951dcbf
>
>welcome..
>
>
>
>---------- 6 of 11 ----------
>From: Bishan <[email protected]>
>Date: Sep 19 10:53AM +0530
>Url: http://groups.google.com/group/android-developers/msg/e44877083bbff523
>
>bundle.putString("any name",Id);
>
>what is the " Id " in above code ?
>
>
>
>---------- 7 of 11 ----------
>From: Krishna Prasad <[email protected]>
>Date: Sep 19 10:57AM +0530
>Url: http://groups.google.com/group/android-developers/msg/339a1a268be2d821
>
>id means the String variable where u save the cursor.colum value.
>
>
>
>---------- 8 of 11 ----------
>From: Krishna Prasad <[email protected]>
>Date: Sep 19 10:59AM +0530
>Url: http://groups.google.com/group/android-developers/msg/610b27e83f290b31
>
>final int id = cursor.getint(idColIndex );
>
>just check the value using logcat whether it is getting or not
>
>On Mon, Sep 19, 2011 at 10:57 AM, Krishna Prasad <
>
>
>---------- 9 of 11 ----------
>From: Bishan <[email protected]>
>Date: Sep 19 11:04AM +0530
>Url: http://groups.google.com/group/android-developers/msg/3c4cef4bf929f8ef
>
>thanx Krishna. i'll check this.
>
>
>
>---------- 10 of 11 ----------
>From: Bishan <[email protected]>
>Date: Sep 19 11:21AM +0530
>Url: http://groups.google.com/group/android-developers/msg/c0ce955df0ba5b8b
>
>i got this exception,
>
>java.lang.ClassCastException: android.widget.ArrayAdapter
>
>for below code.
>
>SimpleCursorAdapter simpleCursorAdapter = (SimpleCursorAdapter)
>parent.getAdapter();
>
>
>
>---------- 11 of 11 ----------
>From: Krishna Prasad <[email protected]>
>Date: Sep 19 11:42AM +0530
>Url: http://groups.google.com/group/android-developers/msg/bd4c78e4db59879f
>
>did u get your values from db correctly?
>
>
>
>
>=============================================================================
>Topic: Using chimpchat
>Url: http://groups.google.com/group/android-developers/t/3ec44a08d8b05acf
>=============================================================================
>
>---------- 1 of 1 ----------
>From: suman <[email protected]>
>Date: Sep 18 10:44PM -0700
>Url: http://groups.google.com/group/android-developers/msg/1baf47bb506b68ff
>
>Here it is
>http://code.google.com/p/aster/downloads/list
>
>
>
>
>=============================================================================
>Topic: Can 'Recent' item's bind intent be changed ?
>Url: http://groups.google.com/group/android-developers/t/cb277bffc252c1f7
>=============================================================================
>
>---------- 1 of 2 ----------
>From: Zsolt Vasvari <[email protected]>
>Date: Sep 18 10:25PM -0700
>Url: http://groups.google.com/group/android-developers/msg/a8d9798daf7bce58
>
>What would the API be for such a functionality?  Your app is not
>running, so the user would have to initiate the change using some UI
>paradigm.  Is there such a UI paradigm in Android currently?
>
>
>
>---------- 2 of 2 ----------
>From: Pritam <[email protected]>
>Date: Sep 18 10:39PM -0700
>Url: http://groups.google.com/group/android-developers/msg/fbbac62c14ee02b2
>
>I am not sure on any current available option from API.
>If you mean what can be , then yes, we can make it to pass some
>predefined extra added with Intent, so we know from where the
>application is launched.
>I mean if it has been from somewhere out of app control, like the GUI
>app in this case.
>
>
>
>
>=============================================================================
>Topic: Screenshot capture
>Url: http://groups.google.com/group/android-developers/t/3d3d7ca332da4f17
>=============================================================================
>
>---------- 1 of 1 ----------
>From: suman <[email protected]>
>Date: Sep 18 10:39PM -0700
>Url: http://groups.google.com/group/android-developers/msg/312b99e04fa0b3b3
>
>Hello,
>
>I am capturing screenshot using Android screenshot library(http://
>code.google.com/p/android-screenshot-library/wiki/DeveloperGuide)
>
>But I have observed that many times the screenshot captured by ASL is
>stale , it does not show the actual contents being shown on device. It
>happens when the changes on screen are quite small.  I want to use
>this screenshot cature tool in automation workflow. Is there any other
>library or method which captures latest/refershed view of device
>screen.
>
>Thanks much
>Suman
>
>
>
>=============================================================================
>Topic: How to create custom softkeyboard ??
>Url: http://groups.google.com/group/android-developers/t/7627e3d657992d66
>=============================================================================
>
>---------- 1 of 2 ----------
>From: Zsolt Vasvari <[email protected]>
>Date: Sep 18 10:26PM -0700
>Url: http://groups.google.com/group/android-developers/msg/7e2a014ccb21a26d
>
>Yes, the SDK documentation.
>
>On Sep 19, 11:44 am, Krishna Prasad <[email protected]>
>wrote:
>
>
>---------- 2 of 2 ----------
>From: Krishna Prasad <[email protected]>
>Date: Sep 19 11:00AM +0530
>Url: http://groups.google.com/group/android-developers/msg/3dd00f97cdfef2cd
>
>Thanks ..
>
>
>
>
>=============================================================================
>Topic: complieStatement(INSERT) crashing my app??
>Url: http://groups.google.com/group/android-developers/t/a8d893af8241203e
>=============================================================================
>
>---------- 1 of 1 ----------
>From: Zsolt Vasvari <[email protected]>
>Date: Sep 18 10:28PM -0700
>Url: http://groups.google.com/group/android-developers/msg/f9635245c619c1ff
>
>SQLite has the best logging in all of Android's components.  The exact
>error is almost always spelt out in "Android for Dummies" detail.
>
>
>
>
>=============================================================================
>Topic: What is the sorting order on Android Market?
>Url: http://groups.google.com/group/android-developers/t/631e68418df77b11
>=============================================================================
>
>---------- 1 of 2 ----------
>From: Peter Sinnott <[email protected]>
>Date: Sep 18 09:35PM -0700
>Url: http://groups.google.com/group/android-developers/msg/a95fe149e5fbe66f
>
>That isn't great but what about Inesoft Cash Organizer. No other apps
>by the dev , 1-5 installs and it is at position 8.
>
>
>
>---------- 2 of 2 ----------
>From: Zsolt Vasvari <[email protected]>
>Date: Sep 18 09:48PM -0700
>Url: http://groups.google.com/group/android-developers/msg/ce91603f2bc45b3a
>
>Yes, same thing with Cash Organizer.  That app is only a week old.
>I do believe the rankings are manipulated.
>
>
>
>
>
>=============================================================================
>Topic: Android Honeycomb CheckBox against white background cannot be seen
>Url: http://groups.google.com/group/android-developers/t/a2cd2aac630e2a87
>=============================================================================
>
>---------- 1 of 1 ----------
>From: albnok <[email protected]>
>Date: Sep 18 09:47PM -0700
>Url: http://groups.google.com/group/android-developers/msg/eb039bffb7513dda
>
>I am putting a CheckBox against a white background. It looks fine on
>pre-Honeycomb devices but on Honeycomb, it seems that the graphic has
>partial transparency and is white, so when the checkbox is unticked,
>you cannot see it.
>
>I tried using the Theme.Holo.Light style as follows:
>
><CheckBox android:text="" style="@android:style/Theme.Holo.Light"
>android:layout_marginLeft="5dip" android:id="@+id/checkBoxWifiOnly"
>android:layout_width="wrap_content"
>android:layout_height="wrap_content" />
>
>This appears to have no effect. Am I typing the syntax wrongly?
>
>
>
>=============================================================================
>Topic: Ynt: Gallery view image zoom option in multi touch..
>Url: http://groups.google.com/group/android-developers/t/28be8fa0dec3e690
>=============================================================================
>
>---------- 1 of 1 ----------
>From: ragupathi ragupathi <[email protected]>
>Date: Sep 17 11:56PM -0700
>Url: http://groups.google.com/group/android-developers/msg/4d06ef5e121483bb
>
>Hi,
>   Sorry for the delay im tried your code its showing error on the
>getScaleX() and getScaleY() methods. If u dont any other idea?
>
>
>
>=============================================================================
>Topic: Ridiculous Publisher Stats - Anyone had enough???
>Url: http://groups.google.com/group/android-developers/t/66dc73ea9d1794d8
>=============================================================================
>
>---------- 1 of 1 ----------
>From: TreKing <[email protected]>
>Date: Sep 18 01:54AM -0500
>Url: http://groups.google.com/group/android-developers/msg/4de647525b069cb8
>
>
>> Anyone try Google Analytics within your app?
>
>
>Yes.
>
>-------------------------------------------------------------------------------------------------
>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 [email protected]
>To unsubscribe from this group, send email to
>[email protected]
>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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to