0

我正在尝试做一些非常简单的事情:在屏幕中间创建一个标签。但是我尝试了 layout_gravity 的每种组合,但它不起作用。文本“我的酷应用程序”始终位于屏幕右侧。我希望它在中心。这是 main.xml 中执行标签的部分:

<LinearLayout
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="My Cool Apps"
        android:layout_gravity="center_horizontal"/>

</LinearLayout>

有人能帮忙吗?为什么以上不起作用,我怎样才能使它起作用?

4

5 回答 5

1

试试这个:

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="My Cool Apps"
        android:layout_gravity="center"/>

</LinearLayout>
于 2013-03-31T13:30:13.947 回答
1

尝试使用RelativeLayout

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="My Cool Apps"
        android:layout_centerInParent="true" />
</RelativeLayout>
于 2013-03-31T13:30:17.533 回答
1

您可以尝试使用以下代码更改您的代码:

<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<EditText
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:text="My Cool Apps" >
</EditText>

我希望你的问题得到解决。

于 2013-03-31T13:40:24.333 回答
1

试试这个你会得到它。

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

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>
于 2013-03-31T13:47:55.583 回答
0

Layout_gravity 将用于视图,edittext.gravity 将用于布局。

于 2013-04-02T13:08:17.330 回答