このレイアウト:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
android:orientation="vertical" >
<TextView
android:id="@+id/main_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:keepScreenOn="true"
android:text="@string/hello"
android:textAppearance="@android:style/TextAppearance.Large"
android:textColor="#0000ff" />
<ProgressBar
android:id="@+id/main_progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical" />
</LinearLayout>
textView は水平方向に中央揃えされていますが、ProgressBar が垂直方向に中央揃えされていないのはなぜですか?
ps。相対レイアウトを使用してこれを行うことができることを知っています。しかし、Linear を使用して動作しない理由がわかりません。ps2. なぜ反対票を投じるのか、それは完全に正当な質問ですか?