Как установить нижний колонтитул в Android - PullRequest
2 голосов
/ 30 сентября 2010

Как установить нижний колонтитул в Android на каждой странице

Я использовал:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
   android:background="@color/mcolor"
   android:layout_width="fill_parent" 
   android:layout_height="fill_parent" 
   android:layout_gravity="fill">

<ImageButton android:id="@+id/iconbtn" 
           android:layout_height="wrap_content" 
           android:src="@drawable/all_icon_138" 
           android:layout_marginRight="4px" 
           android:layout_gravity="fill" 
           android:clickable="true"
            android:layout_width="wrap_content" 
            android:background="@color/mcolor"
             android:layout_marginLeft="60px" 
             android:layout_marginTop="12px" android:saveEnabled="true">
</ImageButton>
<TextView android:text="@+id/TextView01" 
     android:id="@+id/label" 
     android:textColor="@color/mbcolor" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center"
     android:scrollbars="vertical" 
     android:layout_marginBottom="30px"
     android:layout_marginTop="30px" 
     android:textSize="12px"
     android:layout_marginRight="30px"
     android:layout_marginLeft="130px"></TextView>
<LinearLayout android:layout_marginTop="50dip" 
    android:gravity="bottom"
     android:layout_height="wrap_content" 
     android:layout_width="fill_parent"
     android:layout_alignParentBottom="true">
     <ImageButton android:id="@+id/previous"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/newfox_footer_320"
            android:layout_alignParentBottom="true"
             android:layout_alignParentRight="false" 
              android:layout_alignParentLeft="false" android:layout_marginLeft="190px" android:layout_marginRight="2px">
            </ImageButton></LinearLayout>
</RelativeLayout>

Он показывает 6 изображений нижнего колонтитула после каждого TextView.Как мне это установить?

Ответы [ 3 ]

2 голосов
/ 30 сентября 2010

неясно, что именно вы хотите, но я предполагаю, что вы хотите использовать нижний колонтитул в макете.

используйте каркасный макет в качестве основного макета с помощью

width = fillparent
height = fillparent

для другого набора макетовгравитация до дна.добавить представления к этой структуре кадра.это ваш нижний колонтитул.

1 голос
/ 25 сентября 2013

Сделайте корневой вид вашего XML-макета RelativeLayout. Тогда представление, которое вы хотите использовать как нижний колонтитул, или его родитель (тот, кто является прямым потомком корневого элемента представления: RelativeLayout) должен иметь этот атрибут: андроид: layout_alignParentBottom = "истинный"

0 голосов
/ 24 мая 2012

Вы использовали LinearLayout для нижнего колонтитула, поэтому вы можете проверить stackoverflow: нижний колонтитул для линейного размещения в Android

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