Re: [android-developers] Re: Imageview not Showing Image on Android 2.2 and not on Android 4.0

2013-03-12 Thread Brad Stintson
Group please help me out. On Mar 9, 2013 5:30 PM, Brad Stintson geek.bin...@gmail.com wrote: Dear Group, I have attached the images of the above mentioned problem. Please help me why this problem is occurring. On Wed, Mar 6, 2013 at 12:48 AM, bob b...@coolfone.comze.com wrote: Why would

[android-developers] Imageview not Showing Image on Android 2.2 and not on Android 4.0

2013-03-05 Thread Brad Stintson
I wrote following code in xml file but Imageview (shown in bold) not Showing Image on Android 2.2 and not on Android 4.0 Please help out. LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; xmlns:tools=http://schemas.android.com/tools;

Re: [android-developers] Android Tablet Devlopment

2013-03-05 Thread Brad Stintson
Ideally minimum level should be 2.2 and maximum to available SDK. (4.1 or so). On Mon, Mar 4, 2013 at 2:43 PM, Rahul Kaushik rahulkaushi...@gmail.comwrote: Hi Team, I am developing an hybrid app in android ,I want this app for my android phone and tablet also which Build SDKAnd Minimum

Re: [android-developers] Imageview not Showing Image on Android 2.2 and not on Android 4.0

2013-03-05 Thread Brad Stintson
belhouchet.i...@gmail.comwrote: Try with diffrent size Le 5 mars 2013 17:50, Brad Stintson geek.bin...@gmail.com a écrit : I wrote following code in xml file but Imageview (shown in bold) not Showing Image on Android 2.2 and not on Android 4.0 Please help out. LinearLayout

[android-developers] Google Authentication in Android Application

2012-12-30 Thread Brad Stintson
Hi, How to use google authentication to use an android application? Regards, Brad -- 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

[android-developers] Handwritten Signature

2012-11-11 Thread Brad Stintson
Hii Group How to recognize and store handwritten signatures on android? Regards, Brad -- 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,

Re: [android-developers] Better UI Designing

2012-02-03 Thread Brad Stintson
Thank you TreKing, I found your link really useful. But would it help me design apps built for android 2.1+? Regards, Brad Stintson On Tue, Jan 31, 2012 at 8:32 PM, TreKing treking...@gmail.com wrote: On Tue, Jan 31, 2012 at 5:18 AM, Brad Stintson geek.bin...@gmail.comwrote: How do I design

[android-developers] Better UI Designing

2012-01-31 Thread Brad Stintson
Hey all, How do I design better UI for my android application? Are there any software or tutorials available which would help in refining the UIs? I am looking for some help or some software or tutorials for designing a better UI for Android 2.1+. Something that would make my task easier. As for

[android-developers] Interface Designing

2012-01-27 Thread Brad Stintson
Hey all, How do I design better interface for my android application? Are there any software or tutorials available which would help in refining the interfaces? Regards, Brad Stintson -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Interface Designing

2012-01-27 Thread Brad Stintson
sms or viber. Regards, Brad Stintson On Fri, Jan 27, 2012 at 3:42 PM, iñaki inaki.s...@gmail.com wrote: Hi Brad: this is awesome: http://developer.android.com/design/index.html Iñaki On 27 January 2012 11:10, Brad Stintson geek.bin...@gmail.com wrote: Hey all, How do I design better

[android-developers] Date display in in SimpleCursorAdapter

2011-04-29 Thread Brad Stintson
I use following code to display title and date from database. The date is in long format. How can I display it in string form using a function. Cursor eventsCursor = db.retrieveProEvents(pro_id); startManagingCursor(eventsCursor); String[] from = new

[android-developers] Open context menu on option item selected

2011-04-29 Thread Brad Stintson
How to open context menu when we select option menu item? -- 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] Layout related

2011-04-28 Thread Brad Stintson
How to add buttons that sticks to the bottom of layout and rest part of layout is scrollable (Same as add event of calendar)? -- 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] Search from Database

2011-04-26 Thread Brad Stintson
How to make a database field searchable? -- 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] Re: Search from Database

2011-04-26 Thread Brad Stintson
Please reply On Tue, Apr 26, 2011 at 6:26 PM, Brad Stintson geek.bin...@gmail.comwrote: How to make a database field searchable? -- 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: [android-developers] Re: Search from Database

2011-04-26 Thread Brad Stintson
Stintson geek.bin...@gmail.com wrote: Please reply On Tue, Apr 26, 2011 at 6:26 PM, Brad Stintson geek.bin...@gmail.com wrote: How to make a database field searchable? -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http

[android-developers] Re: Search from Database

2011-04-26 Thread Brad Stintson
@ Murphy In a way that searchable dictionary works On Tue, Apr 26, 2011 at 9:10 PM, Brad Stintson geek.bin...@gmail.comwrote: Please reply On Tue, Apr 26, 2011 at 6:26 PM, Brad Stintson geek.bin...@gmail.comwrote: How to make a database field searchable? -- You received this message

Re: [android-developers] Problem with timed notification

2011-04-21 Thread Brad Stintson
My problem is resolved. There was a problem in PendingIntent. I rectified that using PendingIntent contentIntent = PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); 2011/4/20 Brad Stintson geek.bin...@gmail.com I did that. But on other side it receives null

[android-developers] Start application at phone boot

2011-04-21 Thread Brad Stintson
I am developing an application, in which I need to fetch all notifications from database at phone boot. How to do that? I was not able to find relevant example for the same. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Problem with timed notification

2011-04-21 Thread Brad Stintson
to ensure there is one instance of each does not look at extras. -- Kostya 21.04.2011 13:47, Brad Stintson пишет: My problem is resolved. There was a problem in PendingIntent. I rectified that using PendingIntent contentIntent = PendingIntent.getBroadcast(context, 0, intent

Re: [android-developers] Problem with timed notification

2011-04-21 Thread Brad Stintson
snippet. -- Kostya 21.04.2011 16:31, Brad Stintson пишет: I use following snippet to set multiple notifications. final int _id = (int) System.currentTimeMillis(); PendingIntent contentIntent = PendingIntent.getBroadcast(context, _id, intent, PendingIntent.FLAG_ONE_SHOT); But it replaces

Re: [android-developers] Problem with timed notification

2011-04-20 Thread Brad Stintson
Thanks a tonne Kostya, that worked just fine. I have another query, I am unable to pass or retrieve an extra in a BroadcastReceiver. How can I work that out? On Wed, Apr 20, 2011 at 1:05 AM, Kostya Vasilyev kmans...@gmail.com wrote: 19.04.2011 21:48, Brad Stintson пишет: When I set alarm

Re: [android-developers] Problem with timed notification

2011-04-20 Thread Brad Stintson
from. 20.04.2011 19:16 пользователь Brad Stintson geek.bin...@gmail.com написал: Thanks a tonne Kostya, that worked just fine. I have another query, I am unable to pass or retrieve an extra in a BroadcastReceiver. How can I work that out? On Wed, Apr 20, 2011 at 1:05 AM, Kostya Vasilyev

[android-developers] Problem with timed notification

2011-04-19 Thread Brad Stintson
I have set the date and time for the event in the interface using datepicker and timepicker respectively. These are stored in the database by converting them into long format. For retrieval, they can be converted back to calendar format(using the function getCalendarFromFormattedLong). The

Re: [android-developers] Problem with timed notification

2011-04-19 Thread Brad Stintson
-filter accordingly). -- Kostya 19.04.2011 19:06, Brad Stintson пишет: Intent activate = new Intent(this, TimeAlarm.class); PendingIntent alarmIntent = PendingIntent.getBroadcast(this, 0, activate, 0); alarms = (AlarmManager)getSystemService(Context.ALARM_SERVICE

[android-developers] Notification from database

2011-04-18 Thread Brad Stintson
How to notify user at a specific time fetched from the database? Moreover, how to retain the state of the data even after system reboot? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Notification from database

2011-04-18 Thread Brad Stintson
Hey Mark, Since I am new to android programming, could you please elaborate your suggestion and may be provide a sample code if possible. Thanking you in advance. Brad On Mon, Apr 18, 2011 at 6:33 PM, Mark Murphy mmur...@commonsware.comwrote: On Mon, Apr 18, 2011 at 8:47 AM, Brad Stintson

[android-developers] Passing data with Intent problem

2011-04-05 Thread Brad Stintson
I have three activities say A,B and C. They are linked as A--B--C. Now I want to send a string of data from activity A to activity B and C. When I use putextra() then from A to B it works perfectly but from B to C it shows error. How to achieve that? -- You received this message because you are

Re: [android-developers] Passing data with Intent problem

2011-04-05 Thread Brad Stintson
the same intent or are you creating a new one? Best regards, Filip Havlicek 2011/4/5 Brad Stintson geek.bin...@gmail.com I have three activities say A,B and C. They are linked as A--B--C. Now I want to send a string of data from activity A to activity B and C. When I use putextra() then from

[android-developers] Sync to google calendar

2011-03-23 Thread Brad Stintson
How can I sync my application data to google calendar? -- 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] List view from database

2011-03-18 Thread Brad Stintson
I want to display two columns retrieved from database in a list view, which can be clicked. How to do that? -- 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

Re: [android-developers] SQLite Database - Multiple Tables

2011-03-14 Thread Brad Stintson
() The above gives the usual pattern for using transactions. -- Kostya 13.03.2011 13:16, Brad Stintson пишет: How to use transaction and how to implement the concept of foreign key? 2011/3/13 Kostya Vasilyev kmans...@gmail.com Multiple inserts, one at a time. Preferably using a transaction

Re: [android-developers] SQLite Database - Multiple Tables

2011-03-14 Thread Brad Stintson
#beginTransaction() The above gives the usual pattern for using transactions. -- Kostya 13.03.2011 13:16, Brad Stintson пишет: How to use transaction and how to implement the concept of foreign key? 2011/3/13 Kostya Vasilyev kmans...@gmail.com Multiple inserts, one at a time. Preferably using

Re: [android-developers] SQLite Database - Multiple Tables

2011-03-14 Thread Brad Stintson
What happens is that it doesn't allow multiple entries for that pro_id. I'm not able to understand why that is happening. On Mon, Mar 14, 2011 at 8:48 PM, Kostya Vasilyev kmans...@gmail.com wrote: 14.03.2011 17:36, Brad Stintson пишет: I assigned pre-defined value for foregin key

[android-developers] SQLite Database - Multiple Tables

2011-03-13 Thread Brad Stintson
How to insert multiple tables which have few fields in common? -- 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] SQLite Database - Multiple Tables

2011-03-13 Thread Brad Stintson
How to use transaction and how to implement the concept of foreign key? 2011/3/13 Kostya Vasilyev kmans...@gmail.com Multiple inserts, one at a time. Preferably using a transaction. 13.03.2011 12:58 пользователь Brad Stintson geek.bin...@gmail.com написал: How to insert multiple tables

Re: [android-developers] Alarm Issue

2011-03-12 Thread Brad Stintson
My alarm is working. Thanks :) On Sat, Mar 12, 2011 at 11:19 AM, TreKing treking...@gmail.com wrote: On Fri, Mar 11, 2011 at 11:44 PM, Brad Stintson geek.bin...@gmail.comwrote: Here are the sample values. So what? That doesn't tell us much more. Try setting the timer to the current

Re: [android-developers] Re: Status Bar Notifications

2011-03-12 Thread Brad Stintson
Finally, My alarm is working with notifications. :) Thanks all and special thanks to Kostya Vasilyev On Sat, Mar 12, 2011 at 1:42 ,AM, Kostya Vasilyev kmans...@gmail.comwrote: 11.03.2011 23:10, Marcin Orlowski пишет: - Connect to your phone/emulator with adb shell, use dumpsys power to

[android-developers] Populate Spinner from database

2011-03-12 Thread Brad Stintson
How to populate spinner from database? Following code is not working in my case. This method shows database entries in spinner private void fillData() { spin_pro= (Spinner)findViewById(R.id.spin_profile); Cursor profilesCursor = mDbHelper.retrieveAllProfiles();

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Brad Stintson
. Jonathan On Mar 10, 10:06 pm, Brad Stintson geek.bin...@gmail.com wrote: *My application is not triggering notification at specified alarm time. Please see below classes and tell me how to do that.* * * * * *This is my notification class.* public class Notificaition extends

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Brad Stintson
Moreover, if i set reminder to current time using alarms.setRepeating(AlarmManager.ELAPSED_REALTIME, SystemClock.elapsedRealtime(), 30 * 1000, alarmIntent); then it is notifying perfectly. 2011/3/11 Brad Stintson geek.bin...@gmail.com 2011/3/11 Kostya Vasilyev kmans

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Brad Stintson
with the above, as next step, I'd add debug logging, shorten the alarm interval just for debugging (say, five minutes) and check what happens. -- Kostya 11.03.2011 19:22, Brad Stintson пишет: How should I implement WakeLock in my above mentioned code? 2011/3/11 Jonathan Foley jonefo...@gmail.com

Re: [android-developers] Re: Status Bar Notifications

2011-03-11 Thread Brad Stintson
(for the original, non-repeating case). -- Kostya 11.03.2011 20:31, Brad Stintson пишет: Moreover, if i set reminder to current time using alarms.setRepeating(AlarmManager.ELAPSED_REALTIME, SystemClock.elapsedRealtime(), 30 * 1000, alarmIntent

Re: [android-developers] Alarm Issue

2011-03-11 Thread Brad Stintson
(Calendar.HOUR,11); cal.set(Calendar.MINUTE,17); cal.set(Calendar.SECOND, 30); cal.set(Calendar.MILLISECOND, 1000); On Sat, Mar 12, 2011 at 5:17 AM, TreKing treking...@gmail.com wrote: On Thu, Mar 10, 2011 at 12:27 PM, Brad Stintson geek.bin...@gmail.comwrote: I am using

Re: [android-developers] Re: Status Bar Notifications

2011-03-10 Thread Brad Stintson
How to get time from database n trigger notification on that time? On Thu, Mar 10, 2011 at 4:45 AM, roberto roberto.fo...@gmail.com wrote: On Mar 9, 11:41 am, Marcin Orlowski webnet.andr...@gmail.com wrote: On 9 March 2011 19:59, roberto roberto.fo...@gmail.com wrote:

[android-developers] Alarm Issue

2011-03-10 Thread Brad Stintson
Hii, I am using following code for setting alarm at specified time but I'm not able to receive alarm at specified time. Please tell me where is the problem Calendar cal = Calendar.getInstance(); cal.setTimeInMillis(System.currentTimeMillis()); cal.clear();

Re: [android-developers] Alarm Issue

2011-03-10 Thread Brad Stintson
I tried that but still it is not working. On Fri, Mar 11, 2011 at 12:04 AM, Marcin Orlowski webnet.andr...@gmail.comwrote: On 10 March 2011 19:27, Brad Stintson geek.bin...@gmail.com wrote: cal.setTimeInMillis(System.currentTimeMillis()); cal.clear(); These two does

Re: [android-developers] Re: Status Bar Notifications

2011-03-10 Thread Brad Stintson
and NotificationManager classes in Android. 10.03.2011 16:47 пользователь Brad Stintson geek.bin...@gmail.com написал: How to get time from database n trigger notification on that time? On Thu, Mar 10, 2011 at 4:45 AM, roberto roberto.fo...@gmail.com wrote: On Mar 9, 11:41 am, Marcin Orlowski

[android-developers] Spinner like drop-down on button

2011-03-10 Thread Brad Stintson
How to implement spinner like array adapter on button? -- 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] Status Bar Notifications

2011-03-09 Thread Brad Stintson
How to create status bar notification which notifies me every day at 10 am? -- 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

Re: [android-developers] Status Bar Notifications

2011-03-09 Thread Brad Stintson
Can u please provide sample code? I am new to this. On Wed, Mar 9, 2011 at 11:31 PM, Kostya Vasilyev kmans...@gmail.com wrote: 09.03.2011 20:53, Brad Stintson пишет: How to create status bar notification which notifies me every day at 10 am? 1 - Use AlarmManager to schedule reliable

[android-developers] Spinner Retrievation

2011-03-05 Thread Brad Stintson
I have created list elements in spinner from strings.xml. I store element in database using spinner1.getSelectedItem().toString(); How to retrieve that element from database? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Database Issue

2011-02-25 Thread Brad Stintson
Yes. But none dealing with multiple tables was provided. On Fri, Feb 25, 2011 at 11:56 AM, Justin Anderson magouyaw...@gmail.comwrote: Have you looked at any of the documentation or samples for databases in Android? On Thu, Feb 24, 2011 at 8:31 AM, Brad Stintson geek.bin...@gmail.comwrote

[android-developers] Storing Date and Time in SQLite

2011-02-25 Thread Brad Stintson
Hi, I am developing an application in which I need to save date and time as two different sqlite database entries and input is taken from two different date and time dialogs. How to store date and time in database, so that they can be retrieved in date format? -- You received this message

Re: [android-developers] Re: Storing Date and Time in SQLite

2011-02-25 Thread Brad Stintson
I saw that link. It would be great if someone can provide me example of the same. On Sat, Feb 26, 2011 at 1:40 AM, DanH danhi...@ieee.org wrote: http://www.sqlite.org/datatype3.html On Feb 25, 1:38 pm, Brad Stintson geek.bin...@gmail.com wrote: Hi, I am developing an application

[android-developers] Database Issue

2011-02-24 Thread Brad Stintson
Hi, I am developing an android application whose SQLite database comprises of around 5 tables and these tables would have entries prior to being rendered and would even be updated once deployed. How to achieve such a database? regards, Brad -- You received this message because you are

[android-developers] Database Issue

2011-02-24 Thread Brad Stintson
Hi, I am developing an android application whose SQLite database comprises of around 5 tables and these tables would have entries prior to being rendered and would even be updated once deployed. How to achieve such a database? regards, Brad -- You received this message because you are