0

我正在处理 ADK,但我遇到了问题。我使用 LinearLayout,我想把我的对象放在布局的中间和中心

这是我的代码

<?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">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center_horizontal|center_vertical"

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center_horizontal|center_vertical"

    <Button
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center_horizontal|center_vertical"

    <Button   
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center_horizontal|center_vertical"

</LinearLayout>

它仍然会到 TOP CENTER 或向左。我应该使用其他东西而不是 LinearLayout 吗?或者是否有用于居中和中间的特殊代码?

感谢您的帮助!

注意:不需要的部分被移除。

4

2 回答 2

3

您可以使用RelativeLayout嵌套LinearLayout的 . 将所有视图放入LinearLayout而不应用 centering 和 set centerInParent="true"

但在您的情况下,只需layout_gravity从您的视图中删除属性并添加gravity="center"到根视图。

而且您忘记关闭视图的标签;)

所以最终的布局将是这样的:

    <?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:gravity="center"
        android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>
于 2013-06-15T18:02:05.797 回答
0

你应该考虑这些事情

  1. 因为 LinearLayout 只是一一添加视图,所以您的 LinearLayout android:layout_width 和 android:layout_height 应该是 "fill_parent" 才能正确显示您的视图
  2. android:layout_gravity 应该是“center_horizo​​ntal|center_vertical”
  3. 尝试为您的对象添加 android:layout_weight
于 2013-06-15T18:03:47.527 回答