Windows Phone 8.1 UIElement size limitation - winrt-xaml

On Windows Phone Silverlight 8 the maximum UIElement size is 2048x2048.
Does this limitation still exist on WP 8.1 with Windows Runtime XAML?

No.
<ScrollViewer>
<Grid Width="150"
Height="40000"
Background="Green" Margin="20"></Grid>
</ScrollViewer>
It's works!

Nope. There is no size limitations on Windows Runtime applications. In both Phone and Store application, you can the UIElement in any sizes (both width and height).

Related

Change font used in Android Studio (the IDE, not in apps)

How can I change the font used by Android studio? Worked just switched me to a windows 10 pc from a mac and the font in AS is just too small and thin for my eyes.
Thanks in advance!
You can navigate to File>Settings>Appearance and then check the checkbox Override default font by in image and change the defaults.

How to make tool font size bigger in Construct2 IDE

I'm using c2 with windows 10. Surface3 with a side monitor that has a resolution of 2160x1440. The text on the IDE for C2 is tiny. Any way to increase the font size used in the IDE similar to what you can do with Visual Studio or Android Studio?
Healy in Tampa
To change the font size you have a couple of options. First off, you can go into File->Preferences and then under General, they have a section for Event Sheet View. There you can change the font size in the event sheet. Additionally, you can simply do a Control+Scroll (up or down) to zoom in there as well.

Android Emulator on OS X with Retina Display

I'm trying to use Android Emulator on Macbook Pro with retina display (and an external 4K display with 2x pixel scaling). I've tried all the possible settings in Android AVD Manager, but emulator always shows a blurry non-retina image. It seems that it treats the display like if it is 1920x1080 instead of 4K thus 1:1 pixel mapping actually happens to be 1px on device = 4px on the display.
Is there any way to make it work well?
Thank you
(I'm using OS X El Capitan and Android Studio 1.4.1)
Answering by myself — seems that it just works now with the Android Studio 2.0.

How to adjust display resolution in Android Studio 1.2

How can I change display resolution of Android Studio IDE? Background: I was running Android Studio 1.1 on 1920 x 1080 Win 8.1 with 14 inch screen. Although the font was not very clear the size was acceptable. Android Studio has just updated to version 1.2 and the whole IDE resolution has changed. I have tried changing the compatibility setting with no improvement. I can change the editor font and console text to make it readable but the toolbar buttons are too small for comfort.
Update: OK, I've learned to live with it, but I'm surprised no-one else has the problem.

Android Asset Usuage XHDPI, HDPI

So i have the following files in these directories:
res/drawable-hdpi/icon_logo.png
res/drawable-xhdpi/icon_logo.png
In my XHDPI layout res/layout-xlarge/main.xml I am referencing the icon_logo in an image however the HDPI resolution asset is displayed instead of the XHDPI asset.
<ImageView
android:layout_width="229.50dp"
android:layout_height="42.50dp"
android:layout_alignParentLeft="true"
android:layout_marginLeft="10dp"
android:layout_marginTop="13dp"
android:contentDescription="#string/cd_header_text"
android:src="#drawable/icon_logo" />
Why would this be, I've been hitting my head against a wall for the last hour trying to figure this out.
p.s. the tablet I am testing with is a Galaxy Tab 10.1 Running HoneyComb 3.2
To my knowledge, a Galaxy Tab 10.1 has MDPI an screen the same as the Moto Xoom, so my guess is that if you don't have an MDPI icon the resource manager takes the next one available, which is the HDPI icon?
xhdpi refers to the density whereas xlarge refers to the screen size.
Galaxy Tab 10.1 has a density of 149 ppi and a screen resolution of 1280x800.
You could check Supporting Multiple Screens for details about the qualifiers that you can use for your resources.

Resources