[android-developers] Re: conversion to dalvik format failed with error 1

2009-05-23 Thread n5r11
This is my strange scenario.. maybe it will help someone: 1. On "Project/Build Automatically" checked I'm not getting any errors. 2. When I uncheck "Project/Build Automatically" and build, I'm not getting any errors. 3. When I clean and build (with "Project/Build Automatically" unchecked) i get:

[android-developers] Re: Is there an easy way to make EditText look like TextView but still behave like EditText?

2009-05-22 Thread n5r11
Don't think so.. There is no setStyle() or something like that - don't know why? On May 21, 7:39 pm, damnesia wrote: > Is it possible to implement style="?android:attr/textViewStyle" > dynamically? > > On May 20, 3:10 am,n5r11 wrote: > > > This see

[android-developers] Re: Is there an easy way to make EditText look like TextView but still behave like EditText?

2009-05-20 Thread n5r11
#x27;t force a @null background. > > Try adding an explicit android:background="@null", which should remove > the EditText 9-patch frame and any padding that comes with it. > > j > > > > > > On Tue, May 19, 2009 at 5:19 PM, n5r11 wrote: > > > I've tr

[android-developers] Re: Is there an easy way to make EditText look like TextView but still behave like EditText?

2009-05-19 Thread n5r11
st&q=Using+Widget.TextView.ListSeparator#38f79498b2c28597 n5r11 On 19 мај, 02:05, Jeff Sharkey wrote: > You should actually be using an attribute instead of a direct reference: > > style="?android:attr/textViewStyle" > > The underlying @style reference isn

[android-developers] Re: How to send a MessageBox when select a Menu item?

2009-05-18 Thread n5r11
There is an example like that in the ApiDemos (came with SDK 1.1, not 1.5 - don't know why?). Anyway, you should download SDK 1.1 and start ApiDemos in 1.1 emulator, and play around a little. There is a Dialog example in com.example.android.apis.app.AlertDialogSample.java, and here is the part of

[android-developers] Re: What is Context for?

2009-05-18 Thread n5r11
You said "any advice" so here it comes.. Try looking at chapter 11 LaunchList example from Mark's Android Tutorials book source code: http://commonsware.com/AndTutorials/AndTutorials-0_9_5.zip I sure hope Mark is doing things "the write way" :) On 17 мај, 19:36, Makeable wrote: > I have just st