안 드 로 이 드 응용 프로그램 개발 (8) 창 레이아웃

2727 단어 android
상대 레이아웃: RelativeLayout
상대 적 으로 레이아웃 이 창의 복잡 한 레이아웃 을 실현 하기 쉽 습 니 다. 구체 적 으로 다음 코드 를 보십시오.
<?xml version="1.0" encoding="utf-8"?>

<!-- 

	   ,          

	android:layout_above ~~~~~~~~~~            ID     

	android:layout_below ~~~~~~~~~~            ID     

	android:layout_toLeftOf ~~~~~~~           ID         

	android:layout_toRightOf ~~~~~~           ID         

	

	   ,                  

	android:layout_alignBaseline ~~    baseline   ID    baseline  

	android:layout_alignTop ~~~~~~~           ID          

	android:layout_alignBottom ~~~~           ID          

	android:layout_alignLeft ~~~~~~          ID         

	android:layout_alignRight ~~~~~          ID         

	

	   ,                

	android:alignParentTop    ~~~~~     true,                 

	android:alignParentBottom ~~~~~     true,                 

	android:alignParentLeft ~~~~~~~     true,                 

	android:alignParentRight  ~~~~~     true,                 

	

	android:layout_centerHorizontal   true,                

	android:layout_centerInParent     true,                        

	android:layout_centerVertical     true,                

	 -->

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    			android:layout_width="fill_parent"

    			android:layout_height="wrap_content"

    			android:padding="10px" >

    			

    		<TextView android:id="@+id/label"

    		    	  android:layout_width="fill_parent"

    		    	  android:layout_height="wrap_content"

    		    	  android:text="Type here:"/>

    		<EditText android:id="@+id/entry"

    		    	  android:layout_width="fill_parent"

    		    	  android:layout_height="wrap_content"

    		    	  android:background="@android:drawable/editbox_background"

    		    	  android:layout_below="@+id/label"/>

    		<Button   android:id="@+id/ok"

    		    	  android:layout_width="wrap_content"

    		    	  android:layout_height="wrap_content"

    		    	  android:layout_below="@+id/entry"

    		    	  android:layout_alignParentRight="true"

    		    	  android:layout_marginLeft="10px"

    		    	  android:text="OK"/>

    		<Button   android:layout_width="wrap_content"

    		    	  android:layout_height="wrap_content"

    		    	  android:layout_below="@+id/entry"

    		    	  android:layout_toLeftOf="@+id/ok"

    		    	  android:layout_alignTop="@+id/ok"

    		    	  android:text="Cancel"/>

</RelativeLayout>

좋은 웹페이지 즐겨찾기