[android-developers] Re: eclipse HELIOS (3.6) Code Assist very slow

2010-10-19 Thread Tim S
ECLIPSE is a streaming pile of dung, imho. I use helios because it
doesn't crash nearly a often as galileo.


On Oct 19, 1:24 am, JonFHancock jonfhanc...@gmail.com wrote:
 Yeah.  I find myself wondering why I am using it instead of Galileo.

 The *only* thing I like about it is the interface for installing new
 plugins.

 Maybe I'll just switch back...

 On Oct 18, 4:36 pm, Zsolt Vasvari zvasv...@gmail.com wrote:



  Helios is a steaming pile of dunk, IMHO.

  On Oct 18, 2:30 pm, JonFHancock jonfhanc...@gmail.com wrote:

   Thank you an infinite number of times!

   I was going out of my way to not allow assists in cases where I knew
   it would be slow.

   On Oct 16, 12:06 pm, SChaser crotalistig...@gmail.com wrote:

If you are using the JEE edition of HELIOS, the assists can be speeded
up by turning off JAX-WS assist in the edit/advanced preference
(Window-Preferences-Java-Editor-Content Assist-Advanced.

It also appears that the assists cycle through a list of suggestion
sources, starting with a different one each time, which would explain
why the assists are not always slow.

Seehttps://bugs.eclipse.org/bugs/show_bug.cgi?id=317979-Hidequoted 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] ImageView scaling/layout problem

2010-10-18 Thread Tim S
I have a view where I'm trying to show images the largest possible
size they can be.  So I have the ImageView set to fill_parent for both
width and height with a scaleType of fitCenter.  However, I have a
caption area (currently a LinearLayout) that I'd like to align with
the bottom of the actual image.  The problem is, if the image has more
of a landscape orientation, the bottom of the image won't go all the
way to the bottom of the ImageView so my caption ends up way below the
image.  Is there any easy way to accomplish this?

-- 
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] ImageView adjustViewBounds not doing what I think it should?

2010-10-12 Thread Tim S
I want to scale and display images which are dynamically loaded to a
certain maximum size.  The way I'm doing this is to set the
layout_width and layout_height of my ImageView to the maximum
dimensions and setting the scaleType to fitCenter.

But here's the problem.  This is inside a RelativeLayout and I want to
show text directly under the image.  In portrait mode, the text is way
at the bottom (because of the height I have set).  So I want the
ImageView to scale down to the actual visible image size which is what
it would seem like adjustViewBounds=true should do.

Am I wrong in this assumption?  Or is there a better way to do what
I'm trying to do?  Because I've been unsuccessful to this point!

Thanks,
tim

-- 
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: ImageView adjustViewBounds not doing what I think it should?

2010-10-12 Thread Tim S
Hmm, well I could've sworn I tried this before but I seem to have
fixed it.  All the parents of my ImageView are set to wrap_content and
this is how I have my ImageView:

ImageView android:id=@+id/image_view
android:layout_width=wrap_content
android:layout_height=wrap_content android:maxWidth=900px
android:maxHeight=369px android:scaleType=fitCenter
android:adjustViewBounds=true
android:layout_centerInParent=true /

But now I have a different problem.  We have a semi-transparent
overlay over the bottom of the image that shows the caption and photo
credits.  I'm doing this with a LinearLayout that's a sibling of the
ImageView above (both are children of a RelativeLayout).  Here's how
that's declared:

LinearLayout android:id=@+id/caption_area
android:layout_width=wrap_content
android:layout_height=wrap_content
android:background=#4100 android:layout_alignBottom=@id/
image_view
android:layout_alignLeft=@id/image_view
android:layout_alignRight=@id/image_view
android:orientation=vertical android:visibility=gone
android:gravity=center_vertical android:padding=8px
android:minWidth=300px
TextView android:id=@+id/caption
android:layout_width=wrap_content
android:layout_height=wrap_content 
android:textColor=#
android:textSize=12px android:textStyle=bold
android:visibility=gone /
TextView android:id=@+id/credit
android:layout_width=wrap_content
android:layout_height=wrap_content 
android:textColor=#
android:textSize=11px android:textStyle=italic
android:visibility=gone /
/LinearLayout

As you can see, it's set to alignLeft and alignRight of my ImageView
so it takes up the full width.  However, in a few rare cases we have
very skinny images and the caption area ends up looking very
squished.  That's why I added the minWidth of 300px but it doesn't
seem to respect it.  Obviously I'm trying to tell Android to just
magically figure out which one takes precedence but I can't think of
another way to do it.  So to sum up, I'd like my overlay to be the
same width as the image, unless it's less than 300px.  In that case,
just keep it 300px.  Is something like this possible?


On Oct 12, 5:35 pm, Tim S t...@schmidthole.com wrote:
 I want to scale and display images which are dynamically loaded to a
 certain maximum size.  The way I'm doing this is to set the
 layout_width and layout_height of my ImageView to the maximum
 dimensions and setting the scaleType to fitCenter.

 But here's the problem.  This is inside a RelativeLayout and I want to
 show text directly under the image.  In portrait mode, the text is way
 at the bottom (because of the height I have set).  So I want the
 ImageView to scale down to the actual visible image size which is what
 it would seem like adjustViewBounds=true should do.

 Am I wrong in this assumption?  Or is there a better way to do what
 I'm trying to do?  Because I've been unsuccessful to this point!

 Thanks,
 tim

-- 
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: TextView height not collapsing

2010-10-10 Thread Tim S
Duh, I missed that somehow.  Thanks!


On Oct 6, 9:00 pm, TreKing treking...@gmail.com wrote:
 On Thu, Sep 30, 2010 at 2:25 PM, Tim S taschmidt1...@gmail.com wrote:
  How exactly do you get them to go away without removing them altogether?

 http://developer.android.com/reference/android/view/View.html#GONE

 --- 
 --
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

-- 
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: Moderators: Where did my post go?

2010-10-10 Thread Tim S
I've found that they can be VERY slow at times. I had a post that it
took them a week to finally get around to approving!


On Oct 8, 3:39 am, Jonas Schwertfeger jschwertfe...@gmail.com wrote:
 24 hours ago I posted a message with the subject
 View.computeScroll(): How to implement it correctly?. It was never
 published. Where did it go?

 Thanks,
 -Jonas

-- 
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] TextView height not collapsing

2010-10-06 Thread Tim S
I have TextViews in a View that are dynamically populated.  But even
when there's no text in them they still seem to take up space,
specifically height, even though the TextView and the parent have
layout_height set to wrap_content.  Coming from HTML land, I would
expect them to collapse.  Even if I set them to invisible, they still
take up room.  I've tried a LinearLayout and a RelativeLayout.  How
exactly do you get them to go away without removing them altogether?

Thanks,
tim

-- 
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