Re: [android-developers] Creating a view in java

2011-06-15 Thread eyasu getahun
Hello all, Please help me, i am encrypting sms messaging on android. But i don't know where to decrypt it. Please some one who can help me. Thanks in advance!. On Sun, Jun 12, 2011 at 10:26 AM, Kostya Vasilyev kmans...@gmail.comwrote: The Context / AttributeSet constructor is used when a view

Re: [android-developers] Creating a view in java

2011-06-12 Thread TreKing
On Fri, Jun 10, 2011 at 12:16 PM, c0dege3k c0deg...@gmail.com wrote: I have a class in my app that extends View, and I need to pass in the Context and AttributeSet parameters, but I don't know what to use. So, IS there a way to make a view without using the findViewById method? Your question

Re: [android-developers] Creating a view in java

2011-06-12 Thread Kostya Vasilyev
The Context / AttributeSet constructor is used when a view is inflated from XML. For creating a view {subclass} from code, you can make any constructor that makes sense - it should be passed a Context, most likely won't have an AttributeSet (since that comes from XML), and can have any other

[android-developers] Creating a view in java

2011-06-11 Thread c0dege3k
I have a class in my app that extends View, and I need to pass in the Context and AttributeSet parameters, but I don't know what to use. So, IS there a way to make a view without using the findViewById method? -- You received this message because you are subscribed to the Google Groups Android