2011-03-13 9 views

답변

4

당신은 이런 식으로 작업을 수행 할 수 있습니다

<RelativeLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:background="#AAFFFFFF"> 

    <ImageButton android:src="@drawable/left_arrow" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true"/> 

    <TextView android:text="@string/your_text" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentCenter="true"/> 

    <ImageButton android:src="@drawable/right_arrow" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentRight="true"/> 
</RelativeLayout> 

에주의를 내가 고른 android:background 색상. 그것은 틀릴 수도 있습니다.

관련 문제