水平居中而不是垂直。我在这里尝试了其他解决方案,似乎没有用。有人可以解释我如何解决这个问题吗?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal" />
</LinearLayout>
答案 0 :(得分:2)
将android:gravity="center"
添加到LinearLayout
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal" />
</LinearLayout>
http://developer.android.com/reference/android/widget/LinearLayout.html#attr_android:gravity
指定对象如何在其自己的边界内在X轴和Y轴上定位其内容。
答案 1 :(得分:1)
以下是两个选项:
1)添加android:gravity="center"
(或仅center_vertical) to the
LinearLayout`。
2)使用RelativeLayout
并设置使用android:layout_centerInParent="true"
属性。
使用任一选项,您都可以从android:layout_gravity
删除ProgressBar
属性。
答案 2 :(得分:0)
这是解决方案!
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
</RelativeLayout>
答案 3 :(得分:-1)
对于线性布局,它是: - android:gravity="center"
表示相对布局: - android:layout_centerInParent="true"