안 드 로 이 드 응용 프로그램 개발 (8) 창 레이아웃
2727 단어 android
상대 적 으로 레이아웃 이 창의 복잡 한 레이아웃 을 실현 하기 쉽 습 니 다. 구체 적 으로 다음 코드 를 보십시오.
<?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>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.