[android-developers] Pipe separator | in sms

2010-02-01 Thread Dmitry Zelenetskiy
I am receive sms from server with | delimeter, but android make it unreadable. Can I make something with this? Thanks. -- 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

[android-developers] Control styling

2009-09-22 Thread Dmitry Zelenetskiy
Hello, I need create some EditText dynamically in my application, but these components have to apply one custom style in styles.xml. I am trying to this next way: XmlResourceParser parser = getResources().getXml(R.style.MyStyle); AttributeSet attributes = Xml.asAttributeSet(parser); ... for

[android-developers] Adding contacts via Intent

2009-09-16 Thread Dmitry Zelenetskiy
Hello! I am trying to add new contact using intent: Intent addPersonIntent = new Intent(Intent.ACTION_INSERT_OR_EDIT); addPersonIntent.putExtra(Insert.NAME, John Smith); addPersonIntent.setType(Contacts.People.DISPLAY_NAME); addPersonIntent.putExtra(Insert.PHONE, Uri.decode(806547850012));

[android-developers] TableLayout

2009-09-02 Thread Dmitry Zelenetskiy
Hello, I have some table with custom cell, for example, TableLayout xmlns:android=http://schemas.android.com/apk/res/android; android:layout_width=fill_parent android:layout_height=fill_parent android:stretchColumns=* TableRow TextView android:layout_column=1