Android 자원 사용 레이아웃

2307 단어 android
Android 응용 프로그램의 한 화면 보 기 는 보통 XML 자원 파일 을 불 러 옵 니 다. 이 XML 파일 은 레이아웃 자원 파일 입 니 다.하나의 레이아웃 자원 도 ID 번 호 를 통 해 R. java 에 표 시 됩 니 다. 코드 에서 레이아웃 자원 을 사용 하면 다음 과 같 습 니 다.
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Set the layout for this activity.  You can find it
        // in res/layout/hello_activity.xml
        setContentView(R.layout.hello_activity);
    }

setContentView(R.layout.hello_activity);Activity 를 가리 키 는 보 기 는 / res / layot / helloactivity. xml 레이아웃 자원 파일
내용:
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    > 
<TextView    android:id="@+id/text1" 
    android:layout_width="fill_parent"  
    android:layout_height="wrap_content"  
    android:text="@string/hello" 
    /> 
 <Button    android:id="@+id/b1" 
    android:layout_width="fill_parent"  
    android:layout_height="wrap_content"  
    android:text="@+string/hello" 
   />    
</LinearLayout> 

선형 페이지 레이아웃 LinearLayout 를 사 용 했 습 니 다. 이것 은 Android 에서 가장 자주 사용 하 는 레이아웃 입 니 다. 레이아웃 에 있 는 구성 요소 가 한 줄 로 표 시 됩 니 다.
자주 사용 하 는 레이아웃 은 FrameLayout (프레임 레이아웃), TableLayout (표 레이아웃), AbsoluteLayout (절대 위치 레이아웃), RelativeLayout (상대 위치 레이아웃) 도 있 습 니 다.
FrameLayout, LinearLayout, AbsoluteLayout, RelativeLayout 는 모두 android. view. View Group 의 하위 클래스 입 니 다.
TableLayout 는 LinearLayout 의 하위 클래스 로 표 로 구성 요 소 를 배열 합 니 다. TableLayout 의 구성 요소 가 TableRow 에 들 어가 지 않 으 면 LinearLayout 에 따라 표 시 됩 니 다.
AbsoluteLayout 는 설 정 된 좌표 위치 에 따라 AbsoluteLayout 의 두 가지 중요 한 속성 은: android: layotx 구성 요소 가 화면 에 있 는 X 좌표, android: layotY 구성 요소 가 화면 에 있 는 Y 좌표 입 니 다.
RelativeLayout 는 사진 을 찍 어서 특정한 구성 요소 의 위치 에 따라 구 조 를 합 니 다. 즉, 특정한 구성 요 소 를 참고 하여 이 구성 요소 의 위, 아래, 왼쪽, 오른쪽 에 두 는 것 입 니 다.
FrameLayout 는 비교적 특수 한 레이아웃 으로 여러 구성 요소 가 왼쪽 상단 에 겹 쳐 놓 여 있 습 니 다.

좋은 웹페이지 즐겨찾기