Jquerymobile页脚隐藏并再次显示按钮

时间:2015-10-03 07:11:44

标签: jquery-mobile jquery-mobile-button

我想在jquerymobile上添加固定页脚的显示和隐藏按钮。 我试图添加一个关闭按钮,但我没有。

<div data-role="footer" data-position="fixed"></div>

...谢谢

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。我制作了一个可折叠块。像这样:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:gravity="bottom"
android:orientation="horizontal">

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:gravity="bottom">

    <Spinner
        android:id="@+id/spinner"
        android:layout_width="100dp"
        android:layout_height="30dp"
        android:spinnerMode="dropdown" />
</LinearLayout>

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:gravity="bottom">

    <Spinner
        android:id="@+id/spinner2"
        android:layout_width="220dp"
        android:layout_height="wrap_content"
        android:spinnerMode="dropdown" />
</LinearLayout>

<EditText
    android:id="@+id/editText"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:ems="10"
    android:gravity="bottom"
    android:inputType="number"
    android:textSize="10sp" />

</LinearLayout>