[android-developers] Re: Layout Design

2016-12-16 Thread Jorge Antonio Muñoz Herbas
If you need only multiple resolutions, you can use one only layout and manage multiple dimens.xml for differnt resolutions, is better for maintainance. If you need multiple screens, tablets and others devices you must implements multiple layouts. This image is of my project:

[android-developers] Re: Layout structure to display button over camera preview (like in stock camera app)

2015-12-19 Thread David Karr
On Friday, December 18, 2015 at 10:52:43 PM UTC-8, gjs wrote: > > Hi, > > Try a FrameLayout - > http://developer.android.com/reference/android/widget/FrameLayout.html > Ok, that's working pretty well. One problem, however. How do I mask multiple "gravity" constants in the component? I started

[android-developers] Re: Layout structure to display button over camera preview (like in stock camera app)

2015-12-18 Thread gjs
Hi, Try a FrameLayout - http://developer.android.com/reference/android/widget/FrameLayout.html Regards On Saturday, December 19, 2015 at 5:20:35 AM UTC+11, David Karr wrote: > > I'm working with a sample video capture app ( > http://examples.javacodegeeks.com/android/core/android-video-capture-

[android-developers] Re: layout problem

2012-12-24 Thread dashman
thanks - just what i was looking for. On Monday, December 24, 2012 2:27:48 AM UTC-5, Sourav Howlader wrote: > > Just mention android:gravity="center" to your Root LinearLayout > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to t

[android-developers] Re: layout problem

2012-12-23 Thread Sourav Howlader
Just mention android:gravity="center" to your Root LinearLayout -- 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-d

[android-developers] Re: layout problem

2012-12-23 Thread Sourav Howlader
Just mention android:gravity="center" to your Root LinearLayout On Sunday, 23 December 2012 07:04:16 UTC+5:30, dashman wrote: > > I've got 3 View elements that i'd like to display at the center > of the page - centered vertically and horizontally. > > for the life of me - i can't get it to work.

[android-developers] Re: layout problem

2012-12-23 Thread Piren
change the linearlayout to warp_content and put it in a RelativeLayout/Framelayout and use the proper centering field (centerInParent/layout_gravity) On Sunday, December 23, 2012 3:34:16 AM UTC+2, dashman wrote: > > I've got 3 View elements that i'd like to display at the center > of the page -

[android-developers] Re: layout overlays

2012-12-18 Thread yaturner
On Sunday, December 16, 2012 3:28:08 PM UTC-8, dashman wrote: > > i'd like to display an layout that overlays my app. > > this layout will display a hint - e.g. tap this to get started etc. > > i would like this layout to be on top of the action bar also - so > that users can't click on it or men

[android-developers] Re: layout overlays

2012-12-17 Thread djhacktor
use popup window it provide action for on click cancel -- 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

[android-developers] Re: layout overlays

2012-12-17 Thread dashman
yes i agree. thanks. On Monday, December 17, 2012 8:32:49 AM UTC-5, Piren wrote: > > RelativeLayout, FrameLayout.. same thing. > You should probably re-read the information on ActionBar if you want to > accomplish what you want.. they explain it clearly how you can handle it in > a way that ot

[android-developers] Re: layout overlays

2012-12-17 Thread Piren
RelativeLayout, FrameLayout.. same thing. You should probably re-read the information on ActionBar if you want to accomplish what you want.. they explain it clearly how you can handle it in a way that other layouts can use the same area http://developer.android.com/guide/topics/ui/actionbar.html

[android-developers] Re: layout overlays

2012-12-17 Thread dashman
Actually I need a RelativeLayout. Also - my main issue was covering the ActionBar. Beuler? > -- 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 th

[android-developers] Re: layout overlays

2012-12-17 Thread Piren
Either just surround your normal layout with a FrameLayout and then do the hints as the second child ("above" the first layout, you'd also have to catch all touch events) or just create a new activity on top of it. if the activity has a transparent background in it's theme, it will look like an

[android-developers] Re: Layout is corrupted with graphics from another layout? Only at runtime, only on a certain device.

2012-10-10 Thread Piren
Interesting... are you loading the backgrounds manually or just defined those in XML? also, its also good to make sure that you didnt have a resource with the same name available in a different resources folder (or if you have one, in a shared library) On Wednesday, October 10, 2012 3:27:41 A

[android-developers] Re: Layout is corrupted with graphics from another layout? Only at runtime, only on a certain device.

2012-10-09 Thread NickL
Good suggestion, but the build works perfectly on all devices but the 2.2 HTC. If it occurs and the layout is corrupted, I can make the problem go away by rebooting the phone. Sounds like some sort of memory corruption that Android is sensitive to. On Tuesday, October 9, 2012 11:36:04 AM

[android-developers] Re: Layout is corrupted with graphics from another layout? Only at runtime, only on a certain device.

2012-10-09 Thread Piren
I've had it happen to me a lot of times, but as a packaging error (resources got packages incorrectly into the apk). but the issues were very broad and obvious and manifested on all of my devices. Try a clean build of the app and see if it re-appears. On Tuesday, October 9, 2012 12:34:51 PM

[android-developers] Re: Layout issues

2012-07-13 Thread Juned Khan
try to use this line in Android manifest file. -- 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+unsub

[android-developers] Re: Layout selector to switch to tablet layout?!

2012-04-17 Thread kodlan
Okay got it. Thanks for explanations. > As I said, nowhere does it say that -xlarge is "not recommended" for > 3.2 and higher. > > "Deprecated" means "we think we have a better solution that you should > investigate, even though you may not be able to use it yet due to > backwards compatibility".

Re: [android-developers] Re: Layout selector to switch to tablet layout?!

2012-04-17 Thread Mark Murphy
On Tue, Apr 17, 2012 at 7:50 AM, kodlan wrote: >> Please re-read those instructions. Nowhere does it say that -xlarge is >> "not recommended" for 3.2 and higher. You have *alternatives* for 3.2 >> and higher, if you wish to use them. > > Hmm, http://developer.android.com/guide/practices/screens_su

[android-developers] Re: Layout selector to switch to tablet layout?!

2012-04-17 Thread kodlan
> > What's the way to calculate them? > > dip = px * 160 / density > > using the density buckets (e.g., -xhdpi is 320) > So: > 1280px * 160 / 320 = 1280 / 2 = 640dip Thanks! > Please re-read those instructions. Nowhere does it say that -xlarge is > "not recommended" for 3.2 and higher. You have

Re: [android-developers] Re: Layout selector to switch to tablet layout?!

2012-04-17 Thread Mark Murphy
On Tue, Apr 17, 2012 at 7:11 AM, kodlan wrote: > Where did you get those numbers for Nexus? Arithmetic. > What's the way to calculate them? dip = px * 160 / density using the density buckets (e.g., -xhdpi is 320) So: 1280px * 160 / 320 = 1280 / 2 = 640dip > The problem with x-large is that

[android-developers] Re: Layout selector to switch to tablet layout?!

2012-04-17 Thread kodlan
> FWIW, the built-in apps use 600dp as the switchover point. Now that's interesting, 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 To unsubscribe from this g

[android-developers] Re: Layout selector to switch to tablet layout?!

2012-04-17 Thread kodlan
Hi, Thanks for response. Where did you get those numbers for Nexus? What's the way to calculate them? The problem with x-large is that it not recommended to be used for 3.2 and higher, see http://developer.android.com/guide/practices/screens_support.html#DeclaringTabletLayouts, that was the reas

Re: [android-developers] Re: Layout background interferes with ListView (WAS: Has ListView been modified....)

2012-04-02 Thread Jim Graham
On Mon, Apr 02, 2012 at 01:04:43AM -0700, Zsolt Vasvari wrote: > Why fight the design? The List background on ICS is a slight gradient, > looks nice, why make it pitch balck? > > Set the background only for pre-ICS (or pre-HC) and leave the nice gradient > as it on ICS. I think you may have mi

[android-developers] Re: Layout background interferes with ListView (WAS: Has ListView been modified....)

2012-04-02 Thread Zsolt Vasvari
Why fight the design? The List background on ICS is a slight gradient, looks nice, why make it pitch balck? Set the background only for pre-ICS (or pre-HC) and leave the nice gradient as it on ICS. On Monday, April 2, 2012 10:22:34 AM UTC+8, Spooky wrote: > > Same thread, new topic (to refl

[android-developers] Re: layout configuration qualifiers

2012-03-05 Thread moktarul anam
Hi harr..., can u tell me what is ur android version? because layout, layout-large.. etc will support from 2.3. below 2.3 version ( 2.2, 2.1..) does not support this Moktarul On Friday, 2 March 2012 02:23:36 UTC+5:30, harr...@roadrunner.com wrote: > > I have an app that uses configuration q

[android-developers] Re: Layout text justificaiton question:

2012-03-02 Thread Kookamonga
Sanitize your inputs? http://xkcd.com/327/ On Friday, 2 March 2012 11:49:21 UTC-5, Mark Winchester wrote: > > I finally figured out what my problem was. My data source was appending a > bunch of extra white space at the end of input names that it was giving > me. So, even though I had my layou

[android-developers] Re: Layout text justificaiton question:

2012-03-02 Thread Kookamonga
Sanitize your inputs? http://xkcd.com/327/ On Thursday, 1 March 2012 18:33:19 UTC-5, Mark Winchester wrote: > > I've got a GUI coded up, and it works pretty well, but I'm having an issue > getting everything formatted just right. Currently, there exists a > ListView on the page. This list view

[android-developers] Re: Layout text justificaiton question:

2012-03-02 Thread Mark Winchester
I finally figured out what my problem was. My data source was appending a bunch of extra white space at the end of input names that it was giving me. So, even though I had my layouts set up like they were supposed to be (I'm not absolutely sure the one that I posted would have worked, but I f

Re: [android-developers] Re: Layout

2012-02-13 Thread fei ji
Maybe it's me not understand your meaning. Here is the linkto explain my meaning. On Mon, Feb 13, 2012 at 3:20 PM, mark2011 wrote: > Dear fei ji : > > I had tried. But the result isn't what I want. Maybe I > misunderstand your me

[android-developers] Re: Layout

2012-02-12 Thread mark2011
Dear fei ji : I had tried. But the result isn't what I want. Maybe I misunderstand your meaning. Could you give me an example? Thanks. Br, Mark On Feb 13, 1:49 pm, fei ji wrote: > Using dip instead of px, then the size will change according the dpi value > of specific device. then put your

[android-developers] Re: Layout supporting "word wrap" for Views?

2012-01-31 Thread Zsolt Vasvari
Here's mine, it maybe a bit more full featured. It also supports centering the views vertically on each line: package your.package.here; import java.util.ArrayList; import java.util.Collection; import java.util.List; import android.content.Context; import android.content.res.TypedArray; import

[android-developers] Re: Layout supporting "word wrap" for Views?

2012-01-30 Thread Guy Smith
I bit the bullet and wrote a class: WritingLayout is a ViewGroup which lays out children horizontally to a given width, then begins a new line. Warning: It's a proof-of-concept. You may wish to tighten it up, and perhaps add some bells and whistles. package com.downacross.util; import java.u

Re: [android-developers] Re: layout issues

2012-01-06 Thread Kostya Vasilyev
7 января 2012 г. 2:20 пользователь DanielleM написал: > Ah...that makes sense. Perhaps I should have read over the > documentationagain. I'm sure it says that. > Yes, that post at the official blog I linked to goes into great detail about how this works and best practices. > > Thanks so m

[android-developers] Re: layout issues

2012-01-06 Thread DanielleM
Ah...that makes sense. Perhaps I should have read over the documentationagain. I'm sure it says that. Thanks so much!!! On Jan 6, 5:14 pm, Kostya Vasilyev wrote: > Those resource qualifiers are available starting with Android 3.2, not 3.0: > > http://android-developers.blogspot.com/2011/07/n

Re: [android-developers] Re: Layout for zero-length strings in TextView

2011-11-06 Thread lokesh gupta
Please give android:textSize=" " This will solve your problem. Lokesh On Sun, Nov 6, 2011 at 7:45 AM, Doug wrote: > I remember noting this as a difference in Honeycomb compared to old > Android versions. You might want to try in a Honeycomb (and even ICS) > emulator as a ref

[android-developers] Re: Layout for zero-length strings in TextView

2011-11-05 Thread Doug
I remember noting this as a difference in Honeycomb compared to old Android versions. You might want to try in a Honeycomb (and even ICS) emulator as a reference. And I would love for a Google Android engineer to chime in as to why the behavior or TextView changed -- this is not an insignificant

[android-developers] Re: Layout for zero-length strings in TextView

2011-11-04 Thread RLScott
On Nov 4, 4:26 pm, Belvedere Computer Services wrote: > not to argue ~ I feel we need to establish a Compatibility Definition > for the issue - just recently I had jet another GUI designer try to > tell me nulls were handled by the code when we were looking at code > that had no null handler = in

[android-developers] Re: Layout for zero-length strings in TextView

2011-11-04 Thread Belvedere Computer Services
not to argue ~ I feel we need to establish a Compatibility Definition for the issue - just recently I had jet another GUI designer try to tell me nulls were handled by the code when we were looking at code that had no null handler = in other works (my opinion) is default behavior for supplied GUI s

[android-developers] Re: layout problem

2011-10-19 Thread viktor
http://developer.android.com/reference/android/widget/ImageView.html#attr_android:scaleType set scale type to the "fitXY" Or you can calculate width and height for your ImageView manualy by ParentView (width, height) with correct aspect ration for your image. On 19 Жов, 13:15, vani reddy wrote:

Re: [android-developers] Re: layout changes when on-screen keyboard shows/hides suggestions

2011-10-09 Thread Mark Murphy
On Sun, Oct 9, 2011 at 12:36 PM, Alexander Bürger wrote: > That makes them same height, but this height is still changing, which looks > weird. > > Why is the LinearLayout containing text field and button changing its height > at all? This does not make sense to me. The only way I found to avoid i

Re: [android-developers] Re: layout changes when on-screen keyboard shows/hides suggestions

2011-10-09 Thread Alexander Bürger
Hi, Try making the Button and the EditText height "match_parent" (or "fill_parent") instead of "wrap_content". That makes them same height, but this height is still changing, which looks weird. Why is the LinearLayout containing text field and button changing its height at all? This does not

[android-developers] Re: layout changes when on-screen keyboard shows/hides suggestions

2011-10-09 Thread Studio LFP
Try making the Button and the EditText height "match_parent" (or "fill_parent") instead of "wrap_content". I've run into this before and I think the Button and EditText aren't quite the same initial height when using "wrap_content". When the keyboard pops up, it might be pushing the Button up t

[android-developers] Re: Layout

2011-10-03 Thread rahul verma
Hey You should use Relative layout , that is the best option according to me On Oct 3, 6:34 am, Siva Prakash wrote: > Hi > > I want to design my Activity Page as like attached. As you see in the top I > have back button and Setting button to basically have some options. To > achieve this can I us

Re: [android-developers] Re: Layout

2011-10-03 Thread rich friedel
Use RelativeLayout http://developer.android.com/reference/android/widget/RelativeLayout.html *hint:* look up layout_alignParentTop and layout_alignParentLeft etc... Google is most definitely your friend here ;) -- You received this message because you are subscribed to the Google Groups "Andro

Re: [android-developers] Re: Layout

2011-10-03 Thread Siva Prakash
Thanks for all your update. Even I don't mind to remove Back button but I want to know what is the best of keeping top bar with at least settings button. Thanks On Mon, Oct 3, 2011 at 7:43 PM, Kostya Vasilyev wrote: > It depends on the actual use case. > > For example: preference activities t

Re: [android-developers] Re: Layout

2011-10-03 Thread Kostya Vasilyev
It depends on the actual use case. For example: preference activities typically don't use a dedicated "Ok" or "Save" button, to pressing Back applies the changes. "Edit a data item" type activities typically have an "Ok" or "Save" (but not "Back") button that saves the data and closes the act

Re: [android-developers] Re: Layout

2011-10-03 Thread John Goche
I hope nobody minds if I jump in on this topic. I wanted to ask whether implementations should interpret the back button as an OK or as a Cancel when a form has data. Regards, John Goche On Mon, Oct 3, 2011 at 3:39 PM, Chrystian Vieyra wrote: > Why do you need a back button on your layout? The

[android-developers] Re: Layout

2011-10-03 Thread Chrystian Vieyra
Why do you need a back button on your layout? The current CCC states that "device implementations MUST make these functions available to the user at all times, regardless of application state. These functions SHOULD be implemented via dedicated buttons." A physical back button is standard, havin

[android-developers] Re: Layout, Canvas questions

2011-08-24 Thread John Goche
Thanks for the fix. I still wonder about the emulator. I want it to be scaled when I launch it. But I only see how to do this scaling from Window -> Android SDK and AVD Manager -> Start -> Scale Display to Real Size -> Launch but then when I run Run -> Run a new emulator is started. The emulator

[android-developers] Re: Layout, Canvas questions

2011-08-22 Thread Chris
> LinearLayout layout = new LinearLayout(this); > Panel panel = new Panel(this); > Button button = new Button(this); > layout.addView(panel); > layout.addView(button); > setContentView(panel); You're creating a LL, adding the panel and button to it, but setting

[android-developers] Re: Layout problem with TextView on RelativeLayout

2011-07-22 Thread Abhishek Akhani
I have also encountered this problem i think 9 patch images take some space on all four sides which makes the inner content to squeeze you have to readjust your text view or just use png... :-) this is what i did -- You received this message because you are subscribed to the Goog

[android-developers] Re: Layout in a not default package

2011-06-26 Thread Alfonso
Have you seen this? http://code.google.com/p/apv/ It looks exactly what you´re looking for. By the way, any clue about me question? On 25 jun, 19:46, krishna kumar wrote: > any body please help me pdf reader how to implements ...any concepts > >  if have ...then please please help

[android-developers] Re: layout background image with full display

2011-06-17 Thread Károly Holczhauser
Hi everybody! Okay, I'm now doing a video gallery, which have a lot of Thumbnail picture. When a user click on an item a new Activity is starting: I have to display the Thumbnail picture (layout bg) for the user (in a full size) and I also need to place an "play" icon over it. I don't know how c

[android-developers] Re: layout background image with full display

2011-06-17 Thread Károly Holczhauser
Hi! I'm have to do this task on runtime, but yes, of course I had set the fill parent parameters! On jún. 17, 11:52, jjoe64 wrote: > Did you set the property *android:layout_height* to *fill_parent* for the > linearlayout? -- You received this message because you are subscribed to the Google G

Re: [android-developers] Re: layout background image with full display

2011-06-17 Thread Nasreen Ustad
r u creating some splash screen type form, or what exactly u r doing? 2011/6/17 Károly Holczhauser : > Hi! >  I'm have to do this task on runtime, but yes, of course I had set the > fill parent parameters! > > On jún. 17, 11:52, jjoe64 wrote: >> Did you set the property *android:layout_height* to

[android-developers] Re: Layout sizes not determined when I need them

2011-05-15 Thread RLScott
After some Googling I found that others had asked the same quesiton, and here is the answer: You can get a reliable getHeight() or getWidth() for the TextViews in an activity layout until the activity's onWindowFocusChanged(true). -- You received this message because you are subscribed to the G

[android-developers] Re: Layout mismatch between AVD and actual Device

2011-04-19 Thread argongold
Note: The overlapping is between the gridview and ovalShapes and not the ovalShapes iteself as they are designed to overlap. On Apr 20, 10:56 am, argongold wrote: > Hi, > I have a device (Mini MID) with  lcd screen size of 4.3" and > resolution  480X272 while its lcd density scale I captured

[android-developers] Re: Layout Buttons have no gradient on Droid X

2011-04-08 Thread lbendlin
Now that you have achieved your goal think about the people that have to use your app. Maybe they did actually like the device scheme, and they will now scratch their heads as to why your app behaves differently... Or maybe not. Just saying. -- You received this message because you are subscri

[android-developers] Re: Layout Buttons have no gradient on Droid X

2011-04-08 Thread Marke2112
Success. Using your guidance above I did the following: 1. Created a simple gif gradient image "sliver" (named button_bg.gif) to use as the button image background and stored it in the drawable folder(s). 2. Created a custom buttonstyle.xml file with the follow contents and stored in the dra

[android-developers] Re: Layout Buttons have no gradient on Droid X

2011-04-08 Thread Marke2112
Thank you for the feedback. I would have expected the "setColorFilter()" call referenced above to have acomplished the color/ gradient override but clearly it did not. I will attempt to locate the standard button theme from the SDK and then use it to override the dark theme of the DroidX. Shoul

[android-developers] Re: Layout Buttons dark and have no gradient on DroidX

2011-04-08 Thread Marke2112
Thanks. For some reason I was never able to locate my original post. Please consider this particular chain closed. On Apr 8, 2:42 pm, TreKing wrote: > On Fri, Apr 8, 2011 at 2:31 PM, Marke2112 wrote: > > Any advice??? > > Read the thread with the same question you posed that got some > resp

[android-developers] Re: Layout Question

2011-04-04 Thread Jake Colman
> "PW" == Phill Wiggin writes: PW> On Mon, Apr 4, 2011 at 3:54 PM, Jake Colman wrote: >> >> >> No takers on this question? Any reason why word-wrapped text won't honor >> the layout_centerInParent directive? >> >> PW> I haven't used centerInParent and I'm not at m

Re: [android-developers] Re: Layout Question

2011-04-04 Thread Phill Wiggin
On Mon, Apr 4, 2011 at 3:54 PM, Jake Colman wrote: > > > No takers on this question? Any reason why word-wrapped text won't honor > the layout_centerInParent directive? > > I haven't used centerInParent and I'm not at my desk to try, but that sounds like it's trying to center your TextView inside

[android-developers] Re: Layout Question

2011-04-04 Thread Jake Colman
No takers on this question? Any reason why word-wrapped text won't honor the layout_centerInParent directive? > "Jake" == Jake Colman writes: Jake> I have a layout that is displaying the time in the format "7:35 Jake> PM". I'd like the display to be centered horizontally and Jak

[android-developers] Re: Layout help

2011-03-30 Thread Neilz
Ok, I'll try again - it was a Sunday after all :-) Basically all I'm after is a LinearLayout sitting in the center of the screen, that I can scroll horizontally from one item to the next, using a finger scroll, rather than just buttons. Any help with this really appreciated. -- You received th

[android-developers] Re: Layout Designer in 2.3 doesn't recognize Gallery.

2011-02-04 Thread Dan Watling
I just ran across this issue as well in ADT 9.0.0. Fortunately, it seems to be only a problem with the graphical layout. You can still use it in your app. -Dan On Dec 17 2010, 12:51 pm, Nathan wrote: > The following classes could not be found: >  - Gallery > > Am I doing something wrong is this

[android-developers] Re: Layout Issue

2011-02-01 Thread Bobbie
After more research I found a ViewSwitcher fixes this issue. Bobbie On Feb 1, 9:40 am, Bobbie wrote: > I've seen some places where they say to create a separate activity for > the second view.  However, it hardly seems necessary in my example > because literally all I am doing at first is dis

[android-developers] Re: Layout Issue

2011-02-01 Thread Bobbie
I've seen some places where they say to create a separate activity for the second view. However, it hardly seems necessary in my example because literally all I am doing at first is displaying a view, there are no other functions. On Feb 1, 9:05 am, Bobbie wrote: > Hey all!  I have a question

Re: [android-developers] Re: layout issues, is the reason minsdk=3?

2011-01-14 Thread Kumar Bibek
Well, read up a bit on Designing apps for different screen sizes and resolutions. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com 2011/1/15 Gabriel Simões > No help on this one? No one ever stepped on this same problem, mainly > with htc wildfire or using minsdk=3 (even with t

Re: [android-developers] Re: layout issues, is the reason minsdk=3?

2011-01-14 Thread Kostya Vasilyev
Do you have supports-screens in the manifest? 2011/1/15 Gabriel Simões > No help on this one? No one ever stepped on this same problem, mainly > with htc wildfire or using minsdk=3 (even with targetsdk=4 or above)? > > tnx! > > On 13 jan, 22:28, Gabriel Simões wrote: > > Hello dear developers,

[android-developers] Re: layout issues, is the reason minsdk=3?

2011-01-14 Thread Gabriel Simões
No help on this one? No one ever stepped on this same problem, mainly with htc wildfire or using minsdk=3 (even with targetsdk=4 or above)? tnx! On 13 jan, 22:28, Gabriel Simões wrote: > Hello dear developers, how are you doing? > > After many months developing for android using only the emulato

[android-developers] Re: layout issues, is the reason minsdk=3?

2011-01-13 Thread Gabriel Simões
Just to complete the post above, I´m using relativelayout, sizes and distances in dip, font sizes in sp. On 13 jan, 22:28, Gabriel Simões wrote: > Hello dear developers, how are you doing? > > After many months developing for android using only the emulator my > test device I finally got a real d

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2011-01-09 Thread Xavier Ducrohet
Hi Tim, sorry for the delayed answer. On Mon, Dec 27, 2010 at 1:55 PM, Tim H. wrote: > Preview 2 is much improved - being able to drag views up and down the > list (and into child layouts) is great, no need for the up/down button > now. Again, can still use some work, but it's getting back to the

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-27 Thread Tim H.
Preview 2 is much improved - being able to drag views up and down the list (and into child layouts) is great, no need for the up/down button now. Again, can still use some work, but it's getting back to the point where I am comfortable using drag and drop, but able to do things manually now. Here'

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-27 Thread fala70
I hope soon, this version is very unusable. On 13 Dic, 09:03, Xavier Ducrohet wrote: > there's no doc at the moment as it's very much a work in progress. > That first version is quite rough, I'll admit (but has a few more > features than the previous one). > > We're hoping to release updates very

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-22 Thread Tor Norbye
We have just released a new snapshot development build: http://tools.android.com/download It should make reordering in the outline work much more smoothly -- in addition to a rewritten drag & drop you now have + and - actions (not buttons, but keyboard shortcuts as well as context menu items). See

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-20 Thread Xavier Ducrohet
I cannot reproduce that. Can you give me an example of what your layouts look like? On Sun, Dec 19, 2010 at 10:22 PM, Eong wrote: > Text view in merge block are still missing. > > On 12月16日, 上午8时47分, Xavier Ducrohet wrote: >> Hey everyone, >> >> we just released a preview of ADT 9.0.0 that fixes

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-19 Thread Eong
Text view in merge block are still missing. On 12月16日, 上午8时47分, Xavier Ducrohet wrote: > Hey everyone, > > we just released a preview of ADT 9.0.0 that fixes some of the issues > you all have. > > Seehttp://tools.android.com/download. > > Make sure you know this is dev version, not a final, fully

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-19 Thread Eong
You shouldn't remove the up/down add/remove buttons from outline, it's very usefull, much more than the dragging style. Now I have to edit the xml myself! Dragging really sucks in my workspace, text view without text will not show up correctly and a lot of views are missing in merge block. And I ne

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-18 Thread goodwin
ADT is a pig, too slow. every time i type a dot , it is like crash.. -- 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 and

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-18 Thread Xavier Ducrohet
Hi Tim, yes we would like to do full refactoring support across XML and Java (for android XML files). On Fri, Dec 17, 2010 at 12:32 PM, Tim H. wrote: > Hi Xavier, > > r9 is much improved! I am still seeing some glitches, such as if you > drag something onto a supposedly invalid area, it still ma

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-17 Thread Moto
I believe the new layout has improved but where did the layout move up or down go? I used to be able to select a view under Outline and using little up/down arrows move the view around On Dec 17, 3:32 pm, "Tim H." wrote: > Hi Xavier, > > r9 is much improved! I am still seeing some glitches,

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-17 Thread Tim H.
Hi Xavier, r9 is much improved! I am still seeing some glitches, such as if you drag something onto a supposedly invalid area, it still makes changes and/or makes the view disappear! What I would love to see make the next version is correcting references to alignments when a view is renamed, i.e.

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-15 Thread Xavier Ducrohet
Hey everyone, we just released a preview of ADT 9.0.0 that fixes some of the issues you all have. See http://tools.android.com/download. Make sure you know this is dev version, not a final, fully-tested, public release. Hope this helps. Xav On Mon, Dec 13, 2010 at 3:24 PM, XanXa wrote: > 1.

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-15 Thread XanXa
1. I have moved a TextView with Style into a linearLayout and the TextView loosed the style. 2. When I try to use an empty LinearLayout I can't add any child (I have to put Layout width and heigth). 3. It's so difficult put the view where you want using only the editor and always modify the rest of

[android-developers] Re: Layout: Battery usage bar

2010-12-14 Thread Harpritt
Cool, Thanks for the explanation. I managed to get the code working perfectly in my app.. bloody fantastic! im impressed at how quick the framework is to pick up. Cheers again Kostya :) On Dec 13, 10:20 pm, Kostya Vasilyev wrote: > These classes are not part of the SDK, that is, what Andro

Re: [android-developers] Re: Layout: Battery usage bar

2010-12-13 Thread Kostya Vasilyev
These classes are not part of the SDK, that is, what Android provides for applications to build upon. Rather, they are a part of one of the built-in applications, provided by Android for the user to use. You can still look and learn, and copy/paste into your application. -- Kostya Vasilyev -- ht

[android-developers] Re: Layout: Battery usage bar

2010-12-13 Thread Harpritt
Oh one more question Why are the classes in package com.android.settings not available to me in my apps? ie i cant import them On Dec 13, 4:52 pm, Kostya Vasilyev wrote: > Have you looked at the source? It's probably part of Settings application: > > http://android.git.kernel.org/?p=platform/pa

[android-developers] Re: Layout: Battery usage bar

2010-12-13 Thread Harpritt
Hi again.. ive found exactly what i was after On Dec 13, 4:49 pm, Kostya Vasilyev wrote: > That's just spam. > > And Julie Andrews's name seems to actually be Vikram. >

[android-developers] Re: Layout: Battery usage bar

2010-12-13 Thread Harpritt
Kostya Thank you sooo much for your reply, the logcat tip is FANTASTIC Cheers again Harpritt On Dec 13, 4:52 pm, Kostya Vasilyev wrote: > Have you looked at the source? It's probably part of Settings application: > > http://android.git.kernel.org/?p=platform/packages/apps/Settings.git;...

[android-developers] Re: Layout: Battery usage bar

2010-12-13 Thread Yahel
Julie Andrews is a spam bot... That's why she doesn't have much to say :D Yahel On 13 déc, 17:33, Brill Pappin wrote: > Julie, > > Your responses still don't contain any content. > Maybe something wrong with your reader? > > - Brill -- You received this message because you are subscribed to th

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-13 Thread Tim H.
Really appreciate you following up on this! I'd also like to add I'm having many issues switching between different configs (QVGA,HVGA, etc..) and changing the zoom level - it will quite often cut off the rendering, showing maybe only a quarter of the actual layout, forcing me to close and re-ope

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-13 Thread stanchat
How do I revert back to the old version? I'm sure when the editor is fully fleshed out it will be really good but at the moment i'm trying to get a application out the door by Dec 25th and the new editor is lsowing down productivity. So what is the best way for me and my team to revert back. -St

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-13 Thread Xavier Ducrohet
there's no doc at the moment as it's very much a work in progress. That first version is quite rough, I'll admit (but has a few more features than the previous one). We're hoping to release updates very frequently. Xav On Sun, Dec 12, 2010 at 9:10 PM, stanchat wrote: > The new Layout Editor is a

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-13 Thread Xavier Ducrohet
On Sun, Dec 12, 2010 at 1:55 PM, Tim H. wrote: > a) For layouts to work in 1.5, you have to put them in a specific > order - To do this correctly, I can no longer move views up or down, I > have to manually edit the xml - the new drag-and-drop seems to prevent > you from making a mistake in this r

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-12 Thread Xavier Ducrohet
On Sun, Dec 12, 2010 at 12:51 PM, Bob Kerns wrote: > I thought I had this issue. But it turned out to be that I didn't know > how to use the new RelativeLayout functionality. > > You can't just drop the new view anywhere, you have to drop it onto > the specific locations that indicate what relatio

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-12 Thread Xavier Ducrohet
On Sun, Dec 12, 2010 at 12:47 PM, Bob Kerns wrote: > Well, that's the only thing you changed about the properties, but > hardly the only thing you changed. yes that's what I meant > It took me a while to figure out how to arrange things in a relative > view. THAT has certainly changed! We're st

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-12 Thread Xavier Ducrohet
yes ADT is open source. http://tools.android.com Xav On Sun, Dec 12, 2010 at 12:36 PM, Frank Weiss wrote: > Just a thought... > > I wonder if any of the developers who are passionate about using the > notoriously buggy ADT layout editor might consider being passionate about > contributing to it

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-12 Thread Xavier Ducrohet
On Sun, Dec 12, 2010 at 12:19 PM, Tim H. wrote: > You say nothing was changed? I have an issue where I can no longer > right click and add views or layouts from the Outline window - and the > add, move up/down buttons have been removed. Is this a bug - or was > this intentional? This is intention

  1   2   3   >