私は ProgressBar を持っています。これは、その上に TextView を持つスピナーであり、両方とも同じ相対レイアウト内にあります。これらは、ProgressBar と TextView のプロパティです。
<TextView
android:id="@+id/txtvStatusCircle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/progressCircle"
android:layout_centerInParent="true"
android:text="Preparing..."
android:textSize="18dip" />
<ProgressBar
android:id="@+id/progressCircle"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />
Eclipse が示す例では、希望どおりに見えますが、実行すると TextView がまったく表示されません。私はこれについて私の心を壊しています!TextView から上記の部分を削除すると、表示されますが、明らかに ProgressBar の上には表示されません。なぜ機能しないのですか?