Android文本视图位置,布局中包含自定义按钮

时间:2010-12-03 04:44:58

标签: android android-layout

我有以下布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:background="@color/all_white"
    android:gravity="center">

    <Button android:id="@+id/mq_categories" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_margin="5dp"
        android:text="Browse Quiz Categories" android:textColor="#EDFF99"
        android:background="@drawable/custom_button" />
    <Button android:id="@+id/mq_random" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_margin="5dp"
        android:text="Enter Random Quiz" android:textColor="#EDFF99"
        android:background="@drawable/custom_button" />
    <Button android:id="@+id/mq_profile" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_margin="5dp"
        android:text="My Profile" android:textColor="#EDFF99"
        android:background="@drawable/custom_button" />

</LinearLayout>

将输出显示为

alt text

现在我需要在屏幕顶部添加欢迎文字

当我添加这样的文本视图时,只显示欢迎文本,没有按钮,也没有滚动

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:background="@color/all_white"
    android:gravity="center">

    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/mg_userinfo" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:text="Welcome"
        android:gravity="center" />

    <Button android:id="@+id/mq_categories" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_margin="5dp"
        android:text="Browse Quiz Categories" android:textColor="#EDFF99"
        android:background="@drawable/custom_button" />
    <Button android:id="@+id/mq_random" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_margin="5dp"
        android:text="Enter Random Quiz" android:textColor="#EDFF99"
        android:background="@drawable/custom_button" />
    <Button android:id="@+id/mq_profile" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_margin="5dp"
        android:text="My Profile" android:textColor="#EDFF99"
        android:background="@drawable/custom_button" />


</LinearLayout>

alt text

当尝试下面的布局时,按钮底部会显示欢迎文字,但按钮已移至屏幕顶部

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:background="@color/all_white"
    android:gravity="center">

    <Button android:id="@+id/mq_categories" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_margin="5dp"
        android:text="Browse Quiz Categories" android:textColor="#EDFF99"
        android:background="@drawable/custom_button" />
    <Button android:id="@+id/mq_random" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_margin="5dp"
        android:text="Enter Random Quiz" android:textColor="#EDFF99"
        android:background="@drawable/custom_button" />
    <Button android:id="@+id/mq_profile" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_margin="5dp"
        android:text="My Profile" android:textColor="#EDFF99"
        android:background="@drawable/custom_button" />

    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/mg_userinfo" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:text="Welcome"
        android:gravity="center" />

</LinearLayout>

alt text

如何在屏幕顶部按中心按钮添加欢迎文字?

2 个答案:

答案 0 :(得分:1)

如果您使用

  

机器人:layout_height = “FILL_PARENT”

android会填满全屏。 你可以用

  

机器人:layout_height = “20DIP”

  

机器人:layout_height = “20像素”

答案 1 :(得分:1)

更改textview的以下属性:

android:layout_width="wrap_content"
android:layout_height="wrap_content" 

将你的textview放在按钮上方。