0

Nexus 7 で Sony Android アクセサリ エミュレータを実行しているときに、時計アプリの SmartWatch 2 エミュレーションが実際の SmartWatch 2 デバイスと一致しません。エミュレーターのテキストビューのレイアウトは、デバイスとは少し異なります。このエミュレータは、Samsung S3 でうまく動作します。この問題を修正できるエミュレータ設定はありますか?

(エミュレーションが常に正確であるとは限らないことは承知していますが、この場合、時計に少し近いと思います。)

レイアウトファイルは次のとおりです。

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

    <TextView
        android:id="@+id/text_current_location_name"
        style="@style/text_current_location_name"
        android:text="State College" />

    <ImageView
        android:id="@+id/img_current_location_icon"
        style="@style/img_current_location_icon"
        android:src="@drawable/ic_current_location"
        android:clickable="true" />

    <ImageView
        android:id="@+id/img_weather_icon"
        style="@style/img_weather_icon" />

    <RelativeLayout
        android:id="@+id/rl_current_temperature"
        style="@style/rl_current_temperature" >
        <!-- current temperature symbol -->
        <TextView
            android:id="@+id/text_temperature_symbol"
            style="@style/text_temperature_symbol"
            android:text="&#176;" />
        <TextView
            android:id="@+id/text_temperature_value"
            style="@style/text_temperature_value"
            android:text="72" />
    </RelativeLayout>

    <TextView
        android:id="@+id/text_weather"
        style="@style/text_weather_short"
        android:text="Thunderstorms" />

    <RelativeLayout
        android:id="@+id/rl_today_temperature"
        style="@style/rl_today_temperature" >
        <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="&#176;" />

        <TextView
            android:id="@+id/day_min_temperature_value"
            android:layout_toLeftOf="@id/day_min_temperature_symbol"
            style="@style/today_temperature_text"
            android:text="67" />

        <TextView
            android:id="@+id/day_temperature_divider"
            android:layout_toLeftOf="@id/day_min_temperature_value"
            style="@style/today_temperature_text"
            android:text="/" />

        <TextView
            android:id="@+id/day_max_temperature_symbol"
            android:layout_toLeftOf="@id/day_temperature_divider"
            style="@style/today_temperature_text"
            android:text="&#176;" />

        <TextView
            android:id="@+id/day_max_temperature_value"
            android:layout_toLeftOf="@id/day_max_temperature_symbol"
            style="@style/today_temperature_text"
            android:text="80" />

        <TextView
            android:id="@+id/day_temperature_label"
            android:layout_toLeftOf="@id/day_max_temperature_value"
            style="@style/today_temperature_text"
            android:text="Today: " />
    </RelativeLayout>

    <ImageView
        android:id="@+id/img_accuweather_logo"
        style="@style/img_accuweather_logo"
        android:src="@drawable/ic_accuweather" />

</RelativeLayout>
4

1 に答える 1

1

エミュレータのレイアウトを修正する設定はありません。結局のところ、Smart Watch 2 の Smart Connect や Host アプリなどの他のコンポーネントと接続する Smartwatch の動作をエミュレートするアプリです。レイアウトの問題ですか、それともバグですか?

于 2013-11-04T22:19:45.240 に答える