Materialdrawer: Placer le pied de page au bas du tiroir

Créé le 25 avr. 2015  ·  3Commentaires  ·  Source: mikepenz/MaterialDrawer

Salut @mikepenz , j'utilise votre bibliothèque. C'est trop cool!
Mais j'ai un petit problème. J'utilise le pied de page pour afficher certaines informations. Mais je peux le mettre au fond du tiroir. Pouvez-vous me dire comment faire cela? :(
Je joins mon image et j'imprime ma configuration de tiroir ici. Aidez-moi, s'il vous plaît. :(
Merci beaucoup pour votre aide!
screenshot_2015-04-26-01-56-58

Ma configuration:

result = new Drawer()
                    .withActivity(this)
                    .withToolbar(mToolbar)
                    .withActionBarDrawerToggle(true)
                    .withTranslucentStatusBar(true)
                    .withHeader(R.layout.slide_header)
                    .addDrawerItems(new PrimaryDrawerItem().withName(navMenuTitles[0]).withIcon(FontAwesome.Icon.faw_user))
                    .withSelectedItem(-1)
                    .withFireOnInitialOnClick(false)
                    .withOnDrawerItemClickListener(itemClickListener)
                    .withFooterDivider(false)
                    .withFooter(R.layout.slide_footer)
                    .withFooterClickable(false)
                    .build();
question

Commentaire le plus utile

@nambv vous voulez qu'il reste toujours en bas?

puis essayez de le définir comme stickyFooter

Tous les 3 commentaires

Mon R.layout.slide_footer.xml :

<?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_alignParentBottom="true"
                android:padding="15dp">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:orientation="vertical">

        <TextView
            android:id="@+id/tv_version_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

        <TextView
            android:id="@+id/tv_owner_company"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Pearcomms @ 2015"/>

        <TextView
            android:id="@+id/tv_developer_team"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="by Dwarves Foundation"/>

    </LinearLayout>

</RelativeLayout>

@nambv vous voulez qu'il reste toujours en bas?

puis essayez de le définir comme stickyFooter

OK je vais essayer. Merci beaucoup pour votre aide @mikepenz : sourire:

Cette page vous a été utile?
0 / 5 - 0 notes