Положение Android Text view с пользовательскими кнопками в макете - PullRequest
0 голосов
/ 03 декабря 2010

У меня есть следующий макет

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

1 голос
/ 03 декабря 2010

Измените следующее свойство textview:

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

И поместите текстовое представление над кнопками.

1 голос
/ 03 декабря 2010

, если вы используете

android: layout_height = "fill_parent"

Android заполняется до полного экрана.Вы можете использовать

android: layout_height = "20DIP"

или

android: layout_height = "20px"

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...