Note that there are some explanatory texts on larger screens.

plurals
  1. POAre there settings for the Sony Accessory Emulator?
    primarykey
    data
    text
    <p>When I am running the Sony Android Accessory Emulator on my Nexus 7, the SmartWatch 2 emulation of my watch app does not match the actual SmartWatch 2 device. The layout of the textviews on the emulator is a little different from the device. This emulator works well on the Samsung S3. Are there any emulator settings that can correct this problem?</p> <p>(I realize that emulation is not always exact, but in this case I would expect it to be a little closer to the watch.)</p> <p>Here is the layout file:</p> <pre><code>&lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="@dimen/screen_width" android:layout_height="@dimen/screen_height" tools:context=".MainActivity" android:background="@color/screen_background" &gt; &lt;TextView android:id="@+id/text_current_location_name" style="@style/text_current_location_name" android:text="State College" /&gt; &lt;ImageView android:id="@+id/img_current_location_icon" style="@style/img_current_location_icon" android:src="@drawable/ic_current_location" android:clickable="true" /&gt; &lt;ImageView android:id="@+id/img_weather_icon" style="@style/img_weather_icon" /&gt; &lt;RelativeLayout android:id="@+id/rl_current_temperature" style="@style/rl_current_temperature" &gt; &lt;!-- current temperature symbol --&gt; &lt;TextView android:id="@+id/text_temperature_symbol" style="@style/text_temperature_symbol" android:text="&amp;#176;" /&gt; &lt;TextView android:id="@+id/text_temperature_value" style="@style/text_temperature_value" android:text="72" /&gt; &lt;/RelativeLayout&gt; &lt;TextView android:id="@+id/text_weather" style="@style/text_weather_short" android:text="Thunderstorms" /&gt; &lt;RelativeLayout android:id="@+id/rl_today_temperature" style="@style/rl_today_temperature" &gt; &lt;TextView android:id="@+id/day_min_temperature_symbol" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_alignParentRight="true" android:textSize="@dimen/today_temperature_font_size" android:textColor="@color/text" android:text="&amp;#176;" /&gt; &lt;TextView android:id="@+id/day_min_temperature_value" android:layout_toLeftOf="@id/day_min_temperature_symbol" style="@style/today_temperature_text" android:text="67" /&gt; &lt;TextView android:id="@+id/day_temperature_divider" android:layout_toLeftOf="@id/day_min_temperature_value" style="@style/today_temperature_text" android:text="/" /&gt; &lt;TextView android:id="@+id/day_max_temperature_symbol" android:layout_toLeftOf="@id/day_temperature_divider" style="@style/today_temperature_text" android:text="&amp;#176;" /&gt; &lt;TextView android:id="@+id/day_max_temperature_value" android:layout_toLeftOf="@id/day_max_temperature_symbol" style="@style/today_temperature_text" android:text="80" /&gt; &lt;TextView android:id="@+id/day_temperature_label" android:layout_toLeftOf="@id/day_max_temperature_value" style="@style/today_temperature_text" android:text="Today: " /&gt; &lt;/RelativeLayout&gt; &lt;ImageView android:id="@+id/img_accuweather_logo" style="@style/img_accuweather_logo" android:src="@drawable/ic_accuweather" /&gt; &lt;/RelativeLayout&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload