1

我是android编程的新手。我正在制作一个应用程序,在这个应用程序中,我想要屏幕中央的文本和按钮。

但我不知道该怎么做。

提前致谢。

4

4 回答 4

1

试试这个布局

<LinearLayout android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:gravity="center">
    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        andriod:text="Test"/>
    <Button android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        andriod:text="Button"/>
</LinearLayout>
于 2012-08-04T10:28:52.887 回答
1

是的,如果您的父布局是 相对布局,您可以这样做。

例子是:

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

<Button
android:id="@+id/mBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I am a Button!"
android:layout_centerInParent="true" />

 <TextView
 android:id="@+id/mTxt"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_centerHorizontal="true"
 android:text"Some Text"
 android:layout_above="@+id/mBtn" />

</RelativeLayout>
于 2012-08-04T10:28:59.537 回答
1

试试这个方法

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

  Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="Button" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/button1"
    android:layout_alignLeft="@+id/button1"
    android:layout_marginBottom="17dp"
    android:text="TextView" />
</RelativeLayout>
于 2012-08-04T10:29:19.683 回答
1
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center" >


<Button
   android:id="@+id/button"
   android:layout_width="wrap_content"
   android:layout_height="fill_parent"
   android:text="This is button"
   android:layout_centerInParent="true" />

  <TextView
      android:id="@+id/textview"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_centerHorizontal="true"
      android:text="Text data dayay"
      android:layout_above="@+id/button" />

</RelativeLayout>    
于 2012-08-04T10:29:28.787 回答