2014년 8월 12일 화요일

http://darkcher.tistory.com/193

하단 고정 메뉴바 만들기 How to create bottom menu bar




<?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="wrap_content"
     android:orientation="vertical"
     >


    <ListView
           android:layout_above="@+id/footer" 
        android:id="@+id/tab2_list"
        android:layout_width="match_parent"
        android:layout_height="match_parent" 
        />

    <TextView 
        android:id="@+id/footer"
        
        android:layout_width="match_parent"
        android:layout_height="200dip"
        android:background="#0000ff"
         android:layout_centerHorizontal="true"
           android:layout_alignParentBottom="true" 
        android:text="bottom"/>
</RelativeLayout>


이렇게 하면된다.

textview는 원하는 layout으로 바꿔주면되겠찌..

댓글 없음:

댓글 쓰기