суббота, 7 января 2012 г.

Комбинации кнопок на Acer Liquid MT (S120)

Комбинации кнопок на Acer Liquid MT (S120)
Список известных комбинаций:
Для загрузки в USB AMSS Download Mode (продвинутый режим позволяющий прошивать разделы устройства с ПК) нажимаем:
CAMERA* + VOLUME UP + POWER (2 вибрации).
Для загрузки в SD Download Mode (продвинутый режим используемый для прошивки апдейтов, в общем OTA апдейтов, включая system + baseband (система + радио часть)) нажимаем:
CAMERA* + VOLUME DOWN + POWER (3 вибрации).
Для загрузки в режим загрузчика (Bootloader Mode) нажимаем:
VOLUME UP + POWER (устройство провибрирует) затем отпускаем POWER но продолжаем держать нажатым VOLUME UP.
Для загрузки в режим Recovery нажимаем:
VOLUME UP + VOLUME DOWN + FOCUS* + POWER (устройство провибрирует) продолжаем держать кнопки нажатыми несколько секунд, затем отпускаем не на долго FOCUS*и нажимаем снова. (кнопку FOCUS отпускаем когда появляется надпись ACER, отпускаем и резко нажимаем (не зажимая её) остальные кнопки так же держим пока не появится загрузка рекавери меню)
* Кнопка для фотографирования имеет 2 положения, первое для фокуса и второе для захвата фотографии, поэтому для FOCUS нажимаем наполовину, и для CAMERAнажимаем полностью. 

понедельник, 2 января 2012 г.

Managed DirectX running from .Net Framework 4.0 app dont hunt


I work on a product that uses Managed DirectX for data visualizations. I was trying to upgrade this product to .net framework 4.0, but I think I'm having issues with Managed DirectX and .Net 4.0 playing together.
The main assembly does not reference managed directX. But when it tries to call into an assembly that does reference managed directX...everthing "halts". Its like the debugger just decided not to step into the assembly. I get no exception, nothing. And when I hit the pause button, the process is sitting on the call into the assembly that references Managed DirectX.
Is there a known compatibility issue with .Net 4.0 and Managed DirectX?
link|improve this question

25% accept rate
feedback

protected by Bill the Lizard Jun 27 '10 at 2:43

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned more than 10 reputation on this site.
Just in case there is one other shop out there using Managed DirextX with .Net 4.0, if you put the following config entry in your app config, it'll allow you to do it.
<startup useLegacyV2RuntimeActivationPolicy="true">
  <supportedRuntime version="v4.0"/>
</startup>
The problem is that the MDX mixed mode assemblies were compiled against 1.1 runtime, and the way CLR 4.0 loads mixed mode assemblies changed, so this config file entry will allow the CLR 4.0 runtime to use lagacy assembly loading.

понедельник, 19 декабря 2011 г.

Make part of layout invisible and the other part visible


I would like to make a LinearLayout that was created from xml invisible, and another LinearLayout visible to replace it. The replacement layout starts out as invisible. When I make the originally visible layout invisible, it still leaves space for it on the screen. How can I refresh the screen so that space is gone?
link|improve this question

79% accept rate
feedback
Perhaps you are mixing up View.INVISIBLE with View.GONE:
int GONE This view is invisible, and it doesn't take any space for layout purposes.
int INVISIBLE This view is invisible, but it still takes up space for layout purposes.