Spinnerの横にタイトルをつけるとうまく整列しない

Androidの画面を作成していたところうまくいかない問題にぶつかりました。

LinearLayoutでもTableLayoutでも良いのですが、Spinnerウィジットの左側にSpinnerウィジットの項目名をつけようとしたところ、どうしてもSpinnerウィジットの水平中心に配置することができないのです。

image

レイアウトの定義は次の通りです。

   1: <?xml version="1.0" encoding="utf-8"?>

<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span> &lt;LinearLayout xmlns:android=<span style="color:#006080;">&quot;http://schemas.android.com/apk/res/android&quot;</span></pre>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span>     android:layout_width=<span style="color:#006080;">&quot;fill_parent&quot;</span></pre>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum4">   4:</span>     android:layout_height=<span style="color:#006080;">&quot;fill_parent&quot;</span></pre>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum5">   5:</span>     android:orientation=<span style="color:#006080;">&quot;horizontal&quot;</span></pre>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum6">   6:</span>     android:baselineAligned=<span style="color:#006080;">&quot;true&quot;</span>&gt;</pre>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum7">   7:</span>     &lt;TextView android:text=<span style="color:#006080;">&quot;@+id/TextView01&quot;</span> android:id=<span style="color:#006080;">&quot;@+id/TextView01&quot;</span> android:layout_width=<span style="color:#006080;">&quot;wrap_content&quot;</span> android:layout_height=<span style="color:#006080;">&quot;wrap_content&quot;</span>&gt;&lt;/TextView&gt;</pre>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum8">   8:</span>     &lt;Spinner android:id=<span style="color:#006080;">&quot;@+id/Spinner01&quot;</span> android:layout_width=<span style="color:#006080;">&quot;wrap_content&quot;</span> android:layout_height=<span style="color:#006080;">&quot;wrap_content&quot;</span>&gt;&lt;/Spinner&gt;</pre>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum9">   9:</span> &lt;/LinearLayout&gt;</pre>

 

TextViewウィジットなどでは問題がなかったので何でだろうと…。かなり嵌りました。

ただ、Googleで検索をしても該当する内容は見つからなかったので本来の使い方が違うのかもしれませんが…。