这个布局:
<?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 为什么不垂直居中?
附言。我知道我可以使用相对布局来做到这一点。但我不明白为什么它不能使用线性?ps2。为什么投反对票,这是一个完全合法的问题?