Кнопка в Android XML Layout - PullRequest
       4

Кнопка в Android XML Layout

0 голосов
/ 17 февраля 2012

Я работаю с пакетом, найденным для меня другими участниками, который позволяет слайдеру начинать сверху и скользить вниз.Мне нужно добавить контент за слайдером, но я не уверен, куда поместить его в XML.Может быть, я должен добавить линейный макет, но я не уверен.Мне просто нужно добавить одну кнопку, которая находится в самом центре экрана.Я думаю, что это должно быть введено в следующем коде:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" xmlns:ns="http://schemas.android.com/apk/res/it.sephiroth.demo.slider">

<Button
    android:id="@+id/button_open"
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:text="@string/open"
    android:layout_centerInParent="true"
    android:visibility="gone" />

<it.sephiroth.demo.slider.widget.MultiDirectionSlidingDrawer
    xmlns:my="http://schemas.android.com/apk/res/it.sephiroth.demo.slider"
    android:id="@+id/drawer"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    ns:content="@+id/content"
    ns:direction="topToBottom"
    ns:handle="@+id/handle" >

    <include
        android:id="@id/content"
        layout="@layout/pen_content" />

    <ImageView
        android:id="@id/handle"
        android:layout_width="wrap_content"
        android:layout_height="40px"
        android:src="@drawable/sliding_drawer_handle_bottom" />
</it.sephiroth.demo.slider.widget.MultiDirectionSlidingDrawer>
</RelativeLayout>

Я также хотел бы, чтобы кнопка была позади ящика.Любая помощь будет отличной!

1 Ответ

0 голосов
/ 17 февраля 2012
Try This:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" xmlns:ns="http://schemas.android.com/apk/res/it.sephiroth.demo.slider">
<LinerLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:gravity="center"
android:layout_height="wrap_content" >

<Button
android:id="@+id/button_open"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="@string/open"
android:layout_centerInParent="true"
android:visibility="gone" />
</LinerLayout
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...