Я не пользуюсь ListView. Мне нужно отобразить текст нижнего колонтитула в конце экрана, а не ниже всех элементов макета. Как мне это сделать?Нижний колонтитул в конце экрана
0
A
ответ
0
Вы можете сделать что-то вроде этого
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:orientation="horizontal" >
<Button
android:id="@+id/frag1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="Button" />
<Button
android:id="@+id/frag2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="Button" />
</LinearLayout>
</RelativeLayout>
0
Использования линейного макета с весом:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/lnrContainer"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</LinearLayout>
<LinearLayout
android:id="@+id/lnrFooter"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</LinearLayout>
</LinearLayout>
0
Я думаю, что вы можете использовать RelativeLayout и добавить layout_alignParentBottom = «истинный» на ваш взгляд колонтитула.
Использовал 'FrameLayout' и установил' Layout' как 'gravity =" Bottom "' –
Это очень общий вопрос. Это показывает, что вы не исследовали, прежде чем задавать вопрос. Вы можете легко найти ответ, если вы попробуйте выполнить поиск, а не запросить его прямо на SO –
. См. эту ссылку: http://stackoverflow.com/questions/13277785/how-to-have-a-fixed-footer-with-scrollview-in- android Надеюсь было бы полезно .. – anju