Предварительный просмотр Spinner для Android Eclipse ADK неправильный
Я размещаю вращающиеся элементы управления на графическом макете, но он игнорирует общий стиль макета и создает огромные элементы управления, выталкивающие все. Запуск его на моем устройстве выглядит идеально. Я делаю что-то неправильно? Смотрите сравнение.
Вот XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/LeftPanel"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="left"
android:layout_weight="1"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="CURRENT"
android:gravity="center" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginLeft="16dp"
android:layout_toRightOf="@+id/textView2"
android:text="Contract 3"/>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="Contract 2"/>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginRight="16dp"
android:layout_toLeftOf="@+id/textView2"
android:text="Contract 1"
style="@style/text"/>
<Spinner
android:id="@+id/spinCurrCon1"
style="@style/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_below="@+id/textView1"
android:layout_marginTop="16dp" />
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="right"
android:layout_weight="1"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="COMPARISON"
android:gravity="center" />
</LinearLayout>
</LinearLayout>
По сути, я не могу сделать графическое представление сейчас, потому что счетчики слишком велики.
Любая помощь приветствуется.