Android RelativeLayout 상단 왼쪽 가운데 오른쪽 탐색 표시 줄 구현

3304 단어 RelativeLayout
Main.XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical">
<RelativeLayout android:id="@+id/Relativelayout01"
android:background="@drawable/head_bg"
android:layout_width="fill_parent" 
android:layout_height="42dp">
<ImageButton android:id="@+id/a"
android:layout_width="36dp" 
android:layout_height="27dp"
android:layout_toLeftOf="@id/Relativelayout01" 
android:src="@drawable/back"
android:layout_marginTop="10dp"
/>
<ImageButton android:id="@+id/b" 
android:layout_width="125dp" 
android:layout_height="27dp"
android:layout_centerInParent="true" 
android:src="@drawable/logo"
/>
<ImageButton android:id="@+id/c"
android:layout_width="48dp" 
android:layout_height="27dp"
android:layout_alignParentRight="true"
android:src="@drawable/login"
android:layout_marginTop="10dp"
/>
</RelativeLayout>
</LinearLayout>


 
Relative Layout 에 사용 되 는 중요 한 속성:
첫 번 째 클래스: 속성 값 은 true 또는 falseandroid: layotcenterHrizontal                                           수평 가운데 android: layotcenterVertical                                            수직 가운데 android: layoutcenterInparent                                           부모 요소 에 비해 완전히 가운데 android: layotalignParentBottom                                     부모 요소 의 아래쪽 가장자리 안 드 로 이 드: layotalignParentLeft                                          부모 요소 의 왼쪽 가장자리 안 드 로 이 드: layotalignParentRight                                        부모 요소 의 오른쪽 가장자리 안 드 로 이 드: layotalignParentTop                                          부모 요소 의 상단 에 붙 이 는 android: layotalignWithParentIfMissing                            대응 하 는 형제 요 소 를 찾 지 못 하면 부모 요 소 를 참고 물 로 한다.
두 번 째 클래스: 속성 값 은 id 의 인용 명 "@ id / id - name" android: layotbelow                          어떤 요소 아래 android: layotabove                          어떤 요소 의 위 에 android: layottoLeftOf                       어떤 요소 의 왼쪽 android: layottoRightOf                     어떤 원소 의 오른쪽 에 있 습 니 다.
android:layout_alignTop                      이 요소 의 상단 가장자리 와 특정한 요소 의 상단 가장자리 정렬 android: layotalignLeft                      이 요소 의 왼쪽 가장자리 와 특정한 요소 의 왼쪽 가장자리 정렬 android: layotalignBottom                 이 요소 의 아래 가장자리 와 특정한 요소 의 아래 가장자리 가 안 드 로 이 드: layot 를 정렬 합 니 다.alignRight                    이 요소 의 오른쪽 가장자리 와 특정한 요소 의 오른쪽 가장자리 가 정렬 되 어 있 습 니 다.
세 번 째 유형: 속성 값 은 구체 적 인 픽 셀 값 입 니 다. 예 를 들 어 30dip, 40pxandroid: layotmarginBottom              원소 밑 가장자리 에서 의 거리 android: layotmarginLeft                   어떤 요소 의 왼쪽 가장자리 에서 의 거리 android: layotmarginRight                 어떤 요소 의 오른쪽 가장자리 에서 의 거리 android: layotmarginTop                   어떤 원소 의 가장자리 에서 의 거리
 
android 튜 토리 얼

좋은 웹페이지 즐겨찾기