[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-20 Thread oriharel
I got myself ADT 9.0 working! great job you guys!

On Dec 19, 5:05 pm, Cyril cyril.r...@gmail.com wrote:
 I confirm Xavier's solution. You can put a view inside a linearLayout,
 provided this layout is not empty and both width and height are NOT
 set to wrap_content. I fought hours before sorting that bug out :-)

 nevertheless, I hope a fix will come ASAP !!!

 On 9 déc, 09:11, oriharel ori.ha...@gmail.com wrote:







  Well, I can't put a TextView inside a LinearLayout by drag n' drop at
  all.
  am I missing something?

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-19 Thread Cyril
I confirm Xavier's solution. You can put a view inside a linearLayout,
provided this layout is not empty and both width and height are NOT
set to wrap_content. I fought hours before sorting that bug out :-)

nevertheless, I hope a fix will come ASAP !!!



On 9 déc, 09:11, oriharel ori.ha...@gmail.com wrote:
 Well, I can't put a TextView inside a LinearLayout by drag n' drop at
 all.
 am I missing something?

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-13 Thread Xavier Ducrohet
fill_parent and match_parent do the same exact thing. In fact they
compile the the same binary XML value.
We just changed the name to be less confusing.

On Thu, Dec 9, 2010 at 1:54 AM, oriharel ori.ha...@gmail.com wrote:
 fill_parent should not be deprecated. it has different functionality
 then match_parent

 On Dec 9, 1:19 am, Zsolt Vasvari zvasv...@gmail.com wrote:
 fill_parent has been deprecated since 2.2.  It's now match_parent

 On Dec 8, 10:01 pm, Julian cacif...@gmail.com wrote:







  Also de up and down arrows.
  Another thing, Where is the fill_parent option?

  2010/12/8 Prashast prash...@gmail.com

   At first I thought its because of a wrong view being opened but looks
   like they have removed the +, - and arrows.

   While working with a complex layout dragging the views just doesn't
   work me. The only solution is to go edit the files in XML.

   The +, - and arrows controls should be brought back IMO

   On Dec 8, 3:54 pm, Kumar Bibek coomar@gmail.com wrote:
Yep they are gone. Perhaps, we are now supposed to do drag and drop. 
+
   -
signs were helpful though.
Kumar Bibekhttp://techdroid.kbeanie.comhttp://www.kbeanie.com

On Wed, Dec 8, 2010 at 1:22 PM, oriharel ori.ha...@gmail.com wrote:
 Before the newest version I was able to create hierarchies using drag
 n' drop, performed on the outline view.
 Since the upgrade, I can't and the controls ('+', '-' and arrows) are
 missing.

 So how am I suppose to build view hierarchies now?

 --
 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+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  ­cr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
 For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

   --
   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+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
­cr...@googlegroups.com
   For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en-Hide quoted text -

  - Show quoted text -

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Xavier Ducrohet
Android SDK Tech Lead
Google Inc.

Please do not send me questions directly. 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 group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-13 Thread Xavier Ducrohet
Yes, this is due to the layout being empty. This is fixed for the next
version where empty layout automatically expands to a non zero size
during drag and drop.

Xav

On Thu, Dec 9, 2010 at 5:06 PM, Prashast prash...@gmail.com wrote:
 Hi Xavier,

 Unfortunately, the drag and drop feature as it is right now is not
 good enough to warrant removing the up and down arrow keys. More often
 than not I cannot get drag and drop to give me the option I want. Let
 me give you a simple example
 ?xml version=1.0 encoding=utf-8?
 RelativeLayout xmlns:android=http://schemas.android.com/apk/res/
 android
        android:layout_width=fill_parent
 android:layout_height=fill_parent
        android:id=@+id/TestRelativeLayout
        LinearLayout android:layout_alignParentTop=true
                android:layout_height=wrap_content
 android:layout_width=wrap_content
                android:id=@+id/TestLinearLayout/LinearLayout
 /RelativeLayout

 Try to add a view to the LinearLayout (within the RelativeLayout)

 Adding a view to RelativeLayout
 On Dec 9, 10:12 am, Xavier Ducrohet x...@android.com wrote:
 hey all,

 We're actively working on the editor, so this is good feedback.

 The new editor in 8.x might look the same, but it's completely
 different underneath and we have added the +/- features back.
 the - button should be replaced by delete anyway. You can right
 click and choose delete or simply hit delete on your keyboard.

 The + option is indeed replaced by drag and drop. We've improved
 drag and drop significantly (and still improving it for the next
 version), and should be good enough that using + isn't needed.
 In some cases too, + isn't enough, you need more information to know
 where the item will be placed (like when dropping into a
 relativeLayout).
 (same thing with the up/down arrows)









 On Tue, Dec 7, 2010 at 11:52 PM, oriharel ori.ha...@gmail.com wrote:
  Before the newest version I was able to create hierarchies using drag
  n' drop, performed on the outline view.
  Since the upgrade, I can't and the controls ('+', '-' and arrows) are
  missing.

  So how am I suppose to build view hierarchies now?

  --
  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+unsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

 --
 Xavier Ducrohet
 Android SDK Tech Lead
 Google Inc.

 Please do not send me questions directly. 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 group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Xavier Ducrohet
Android SDK Tech Lead
Google Inc.

Please do not send me questions directly. 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 group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-12 Thread oriharel
no. they are not in 8.0.1 also.

On Dec 10, 5:11 am, Zarah zarahj...@gmail.com wrote:
 I think Undo (CTRL+Z on Windows) works when you are in the XML view of
 the Layout Editor (not on the graphical view).

 Are the up/down arrows still not back on the 8.0.1?

 I want my up/down arrows! :)

 - Zarah.

 On Dec 9, 4:24 pm, Logan Masten sevenrech...@gmail.com wrote:







  I simply cannot believe the up and down arrows are gone.  What should
  have been a couple minute job through a few arrow presses has turned
  into an hour of me saving and reloading the layout, as undo doesn't
  appear to work either.

  On Dec 8, 8:09 pm, Julian cacif...@gmail.com wrote:

   Hi,

   It would be great if the shapes don't break the entire layout, for 
   example,
   I frequently use rounded shapes for my tablerows, but I can't apply them
   till the end because they can't be displayed/rendered in the layout
   editor.

   Same thing for TabActivities where the content of each tab is populated by
   another independent activities with intents.

   Regards.

   2010/12/8 Xavier Ducrohet x...@android.com

hey all,

We're actively working on the editor, so this is good feedback.

The new editor in 8.x might look the same, but it's completely
different underneath and we have added the +/- features back.
the - button should be replaced by delete anyway. You can right
click and choose delete or simply hit delete on your keyboard.

The + option is indeed replaced by drag and drop. We've improved
drag and drop significantly (and still improving it for the next
version), and should be good enough that using + isn't needed.
In some cases too, + isn't enough, you need more information to know
where the item will be placed (like when dropping into a
relativeLayout).
(same thing with the up/down arrows)

On Tue, Dec 7, 2010 at 11:52 PM, oriharel ori.ha...@gmail.com wrote:
 Before the newest version I was able to create hierarchies using drag
 n' drop, performed on the outline view.
 Since the upgrade, I can't and the controls ('+', '-' and arrows) are
 missing.

 So how am I suppose to build view hierarchies now?

 --
 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+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

--
Xavier Ducrohet
Android SDK Tech Lead
Google Inc.

Please do not send me questions directly. 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 group, send email to
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-09 Thread oriharel
Well, I can't put a TextView inside a LinearLayout by drag n' drop at
all.
am I missing something?

On Dec 9, 4:12 am, Xavier Ducrohet x...@android.com wrote:
 hey all,

 We're actively working on the editor, so this is good feedback.

 The new editor in 8.x might look the same, but it's completely
 different underneath and we have added the +/- features back.
 the - button should be replaced by delete anyway. You can right
 click and choose delete or simply hit delete on your keyboard.

 The + option is indeed replaced by drag and drop. We've improved
 drag and drop significantly (and still improving it for the next
 version), and should be good enough that using + isn't needed.
 In some cases too, + isn't enough, you need more information to know
 where the item will be placed (like when dropping into a
 relativeLayout).
 (same thing with the up/down arrows)









 On Tue, Dec 7, 2010 at 11:52 PM, oriharel ori.ha...@gmail.com wrote:
  Before the newest version I was able to create hierarchies using drag
  n' drop, performed on the outline view.
  Since the upgrade, I can't and the controls ('+', '-' and arrows) are
  missing.

  So how am I suppose to build view hierarchies now?

  --
  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+unsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

 --
 Xavier Ducrohet
 Android SDK Tech Lead
 Google Inc.

 Please do not send me questions directly. 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 group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-09 Thread oriharel
fill_parent should not be deprecated. it has different functionality
then match_parent

On Dec 9, 1:19 am, Zsolt Vasvari zvasv...@gmail.com wrote:
 fill_parent has been deprecated since 2.2.  It's now match_parent

 On Dec 8, 10:01 pm, Julian cacif...@gmail.com wrote:







  Also de up and down arrows.
  Another thing, Where is the fill_parent option?

  2010/12/8 Prashast prash...@gmail.com

   At first I thought its because of a wrong view being opened but looks
   like they have removed the +, - and arrows.

   While working with a complex layout dragging the views just doesn't
   work me. The only solution is to go edit the files in XML.

   The +, - and arrows controls should be brought back IMO

   On Dec 8, 3:54 pm, Kumar Bibek coomar@gmail.com wrote:
Yep they are gone. Perhaps, we are now supposed to do drag and drop. +
   -
signs were helpful though.
Kumar Bibekhttp://techdroid.kbeanie.comhttp://www.kbeanie.com

On Wed, Dec 8, 2010 at 1:22 PM, oriharel ori.ha...@gmail.com wrote:
 Before the newest version I was able to create hierarchies using drag
 n' drop, performed on the outline view.
 Since the upgrade, I can't and the controls ('+', '-' and arrows) are
 missing.

 So how am I suppose to build view hierarchies now?

 --
 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+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  ­cr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
 For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

   --
   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+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
­cr...@googlegroups.com
   For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en-Hide quoted text -

  - Show quoted text -

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-09 Thread ido lan
up and down is very missing...
hate having to edit XML for that.



On Dec 8, 4:01 pm, Julian cacif...@gmail.com wrote:
 Also de up and down arrows.
 Another thing, Where is the fill_parent option?

 2010/12/8 Prashast prash...@gmail.com







  At first I thought its because of a wrong view being opened but looks
  like they have removed the +, - and arrows.

  While working with a complex layout dragging the views just doesn't
  work me. The only solution is to go edit the files in XML.

  The +, - and arrows controls should be brought back IMO

  On Dec 8, 3:54 pm, Kumar Bibek coomar@gmail.com wrote:
   Yep they are gone. Perhaps, we are now supposed to do drag and drop. +
  -
   signs were helpful though.
   Kumar Bibekhttp://techdroid.kbeanie.comhttp://www.kbeanie.com

   On Wed, Dec 8, 2010 at 1:22 PM, oriharel ori.ha...@gmail.com wrote:
Before the newest version I was able to create hierarchies using drag
n' drop, performed on the outline view.
Since the upgrade, I can't and the controls ('+', '-' and arrows) are
missing.

So how am I suppose to build view hierarchies now?

--
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+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en

  --
  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+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-09 Thread Logan Masten
I simply cannot believe the up and down arrows are gone.  What should
have been a couple minute job through a few arrow presses has turned
into an hour of me saving and reloading the layout, as undo doesn't
appear to work either.

On Dec 8, 8:09 pm, Julian cacif...@gmail.com wrote:
 Hi,

 It would be great if the shapes don't break the entire layout, for example,
 I frequently use rounded shapes for my tablerows, but I can't apply them
 till the end because they can't be displayed/rendered in the layout
 editor.

 Same thing for TabActivities where the content of each tab is populated by
 another independent activities with intents.

 Regards.

 2010/12/8 Xavier Ducrohet x...@android.com







  hey all,

  We're actively working on the editor, so this is good feedback.

  The new editor in 8.x might look the same, but it's completely
  different underneath and we have added the +/- features back.
  the - button should be replaced by delete anyway. You can right
  click and choose delete or simply hit delete on your keyboard.

  The + option is indeed replaced by drag and drop. We've improved
  drag and drop significantly (and still improving it for the next
  version), and should be good enough that using + isn't needed.
  In some cases too, + isn't enough, you need more information to know
  where the item will be placed (like when dropping into a
  relativeLayout).
  (same thing with the up/down arrows)

  On Tue, Dec 7, 2010 at 11:52 PM, oriharel ori.ha...@gmail.com wrote:
   Before the newest version I was able to create hierarchies using drag
   n' drop, performed on the outline view.
   Since the upgrade, I can't and the controls ('+', '-' and arrows) are
   missing.

   So how am I suppose to build view hierarchies now?

   --
   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+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

  --
  Xavier Ducrohet
  Android SDK Tech Lead
  Google Inc.

  Please do not send me questions directly. 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 group, send email to
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs 
  cr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-09 Thread Prashast
Hi Xavier,

Unfortunately, the drag and drop feature as it is right now is not
good enough to warrant removing the up and down arrow keys. More often
than not I cannot get drag and drop to give me the option I want. Let
me give you a simple example
?xml version=1.0 encoding=utf-8?
RelativeLayout xmlns:android=http://schemas.android.com/apk/res/
android
android:layout_width=fill_parent
android:layout_height=fill_parent
android:id=@+id/TestRelativeLayout
LinearLayout android:layout_alignParentTop=true
android:layout_height=wrap_content
android:layout_width=wrap_content
android:id=@+id/TestLinearLayout/LinearLayout
/RelativeLayout

Try to add a view to the LinearLayout (within the RelativeLayout)

Adding a view to RelativeLayout
On Dec 9, 10:12 am, Xavier Ducrohet x...@android.com wrote:
 hey all,

 We're actively working on the editor, so this is good feedback.

 The new editor in 8.x might look the same, but it's completely
 different underneath and we have added the +/- features back.
 the - button should be replaced by delete anyway. You can right
 click and choose delete or simply hit delete on your keyboard.

 The + option is indeed replaced by drag and drop. We've improved
 drag and drop significantly (and still improving it for the next
 version), and should be good enough that using + isn't needed.
 In some cases too, + isn't enough, you need more information to know
 where the item will be placed (like when dropping into a
 relativeLayout).
 (same thing with the up/down arrows)









 On Tue, Dec 7, 2010 at 11:52 PM, oriharel ori.ha...@gmail.com wrote:
  Before the newest version I was able to create hierarchies using drag
  n' drop, performed on the outline view.
  Since the upgrade, I can't and the controls ('+', '-' and arrows) are
  missing.

  So how am I suppose to build view hierarchies now?

  --
  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+unsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

 --
 Xavier Ducrohet
 Android SDK Tech Lead
 Google Inc.

 Please do not send me questions directly. 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 group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-09 Thread Zarah
I think Undo (CTRL+Z on Windows) works when you are in the XML view of
the Layout Editor (not on the graphical view).

Are the up/down arrows still not back on the 8.0.1?

I want my up/down arrows! :)



- Zarah.


On Dec 9, 4:24 pm, Logan Masten sevenrech...@gmail.com wrote:
 I simply cannot believe the up and down arrows are gone.  What should
 have been a couple minute job through a few arrow presses has turned
 into an hour of me saving and reloading the layout, as undo doesn't
 appear to work either.

 On Dec 8, 8:09 pm, Julian cacif...@gmail.com wrote:







  Hi,

  It would be great if the shapes don't break the entire layout, for example,
  I frequently use rounded shapes for my tablerows, but I can't apply them
  till the end because they can't be displayed/rendered in the layout
  editor.

  Same thing for TabActivities where the content of each tab is populated by
  another independent activities with intents.

  Regards.

  2010/12/8 Xavier Ducrohet x...@android.com

   hey all,

   We're actively working on the editor, so this is good feedback.

   The new editor in 8.x might look the same, but it's completely
   different underneath and we have added the +/- features back.
   the - button should be replaced by delete anyway. You can right
   click and choose delete or simply hit delete on your keyboard.

   The + option is indeed replaced by drag and drop. We've improved
   drag and drop significantly (and still improving it for the next
   version), and should be good enough that using + isn't needed.
   In some cases too, + isn't enough, you need more information to know
   where the item will be placed (like when dropping into a
   relativeLayout).
   (same thing with the up/down arrows)

   On Tue, Dec 7, 2010 at 11:52 PM, oriharel ori.ha...@gmail.com wrote:
Before the newest version I was able to create hierarchies using drag
n' drop, performed on the outline view.
Since the upgrade, I can't and the controls ('+', '-' and arrows) are
missing.

So how am I suppose to build view hierarchies now?

--
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+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en

   --
   Xavier Ducrohet
   Android SDK Tech Lead
   Google Inc.

   Please do not send me questions directly. 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 group, send email to
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-08 Thread Prashast
At first I thought its because of a wrong view being opened but looks
like they have removed the +, - and arrows.

While working with a complex layout dragging the views just doesn't
work me. The only solution is to go edit the files in XML.

The +, - and arrows controls should be brought back IMO

On Dec 8, 3:54 pm, Kumar Bibek coomar@gmail.com wrote:
 Yep they are gone. Perhaps, we are now supposed to do drag and drop. + -
 signs were helpful though.
 Kumar Bibekhttp://techdroid.kbeanie.comhttp://www.kbeanie.com







 On Wed, Dec 8, 2010 at 1:22 PM, oriharel ori.ha...@gmail.com wrote:
  Before the newest version I was able to create hierarchies using drag
  n' drop, performed on the outline view.
  Since the upgrade, I can't and the controls ('+', '-' and arrows) are
  missing.

  So how am I suppose to build view hierarchies now?

  --
  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+unsubscr...@googlegroups.comandroid-developers%2Bunsubs 
  cr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-08 Thread Julian
Also de up and down arrows.
Another thing, Where is the fill_parent option?

2010/12/8 Prashast prash...@gmail.com

 At first I thought its because of a wrong view being opened but looks
 like they have removed the +, - and arrows.

 While working with a complex layout dragging the views just doesn't
 work me. The only solution is to go edit the files in XML.

 The +, - and arrows controls should be brought back IMO

 On Dec 8, 3:54 pm, Kumar Bibek coomar@gmail.com wrote:
  Yep they are gone. Perhaps, we are now supposed to do drag and drop. +
 -
  signs were helpful though.
  Kumar Bibekhttp://techdroid.kbeanie.comhttp://www.kbeanie.com
 
 
 
 
 
 
 
  On Wed, Dec 8, 2010 at 1:22 PM, oriharel ori.ha...@gmail.com wrote:
   Before the newest version I was able to create hierarchies using drag
   n' drop, performed on the outline view.
   Since the upgrade, I can't and the controls ('+', '-' and arrows) are
   missing.
 
   So how am I suppose to build view hierarchies now?
 
   --
   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+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
   For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

 --
 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+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-08 Thread Zsolt Vasvari
fill_parent has been deprecated since 2.2.  It's now match_parent

On Dec 8, 10:01 pm, Julian cacif...@gmail.com wrote:
 Also de up and down arrows.
 Another thing, Where is the fill_parent option?

 2010/12/8 Prashast prash...@gmail.com



  At first I thought its because of a wrong view being opened but looks
  like they have removed the +, - and arrows.

  While working with a complex layout dragging the views just doesn't
  work me. The only solution is to go edit the files in XML.

  The +, - and arrows controls should be brought back IMO

  On Dec 8, 3:54 pm, Kumar Bibek coomar@gmail.com wrote:
   Yep they are gone. Perhaps, we are now supposed to do drag and drop. +
  -
   signs were helpful though.
   Kumar Bibekhttp://techdroid.kbeanie.comhttp://www.kbeanie.com

   On Wed, Dec 8, 2010 at 1:22 PM, oriharel ori.ha...@gmail.com wrote:
Before the newest version I was able to create hierarchies using drag
n' drop, performed on the outline view.
Since the upgrade, I can't and the controls ('+', '-' and arrows) are
missing.

So how am I suppose to build view hierarchies now?

--
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+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en

  --
  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+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en- Hide quoted text -

 - Show quoted text -

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en