In tooltips for items like Textsize, show what the default value is. I know being new to this stuff and just finished reading the 450+ pages of manuals and looking over most of the forum there wasn't much about it in the documentation other then them not needing dip and sizing correct on their own. First thing I thought before using things was maybe Android got UI design right and just sized the text to properly fit the control...would have made coded layouts without the designer a lot easier than finding out Labels default to 14 and Edit boxes 18.
The CTRL trick to make tooltips fade is nice, but it fades too far...it might as well toggle it on/off. Needs to be just dark/opaque enough to read it and see code under it.
It would be cool if views had a bottom and right attribute. I ended up deciding to just code my layouts, and in positioning views relative to other controls having to do top + height and left + width all the time gets old.
I read in another thread about an imgview with pinch and zoom there was an issue in tabs with -1 values for sizes. First thing I thought was, ok, if -1 just get the parent and use that size for the imgview calculations. Then I realized there is no way to get the parent. Adding a view is all there is. Kind of made the logic confusing in the Designer where there is a dropdown to select a parent, but no parent attribute??? Also, makes it look like views can have multiple parents which I'd think would cause issues.
Where exactly is the -1 size value valid too and why only certain areas? My first thought when reading about it was it could replace 100%x, but there needs to be some way of getting the actual value either with the parent above or another attribute. Expanding on this and making other negative values with special meaning would be cool too...especially if they could apply to flow like setting left=-2 for an Edit Box bumping it right next to the last label added, etc.
The CTRL trick to make tooltips fade is nice, but it fades too far...it might as well toggle it on/off. Needs to be just dark/opaque enough to read it and see code under it.
It would be cool if views had a bottom and right attribute. I ended up deciding to just code my layouts, and in positioning views relative to other controls having to do top + height and left + width all the time gets old.
I read in another thread about an imgview with pinch and zoom there was an issue in tabs with -1 values for sizes. First thing I thought was, ok, if -1 just get the parent and use that size for the imgview calculations. Then I realized there is no way to get the parent. Adding a view is all there is. Kind of made the logic confusing in the Designer where there is a dropdown to select a parent, but no parent attribute??? Also, makes it look like views can have multiple parents which I'd think would cause issues.
Where exactly is the -1 size value valid too and why only certain areas? My first thought when reading about it was it could replace 100%x, but there needs to be some way of getting the actual value either with the parent above or another attribute. Expanding on this and making other negative values with special meaning would be cool too...especially if they could apply to flow like setting left=-2 for an Edit Box bumping it right next to the last label added, etc.