Android開發入門(六)適應方向 6.3 重新布局

來源:互聯網
上載者:User

如果想根據螢幕的方向自訂UI,除了把views錨定在螢幕的四周(上一節講過"錨定"視圖) ,更簡單的辦法就是建立一個獨立的res/layout檔案夾,它包含了不同螢幕方向下的UI布局。如果想要支援 landscape橫屏模式,那麼就可以在res檔案夾下面建立一個layout-land檔案夾(land代表landscape)。

基本上,在layout檔案夾下面的main.xml定義了在portrait豎屏模式下activity的布局。但在 layyout-land檔案夾下面的main.xml定義了橫屏模式下的UI布局。

1. 在layout檔案夾下面的 main.xml檔案:

<pre name="code" class="html"><?xml version="1.0" encoding="utf-8"?>
<RelativeLayout     android:layout_width="fill_parent"     android:layout_height="fill_parent"     xmlns:android="http://schemas.android.com/apk/res/android">        <Button         android:id="@+id/button1"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:text="Top Left"         android:layout_alignParentLeft="true"         android:layout_alignParentTop="true" />        <Button         android:id="@+id/button2"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:text="Top Right"         android:layout_alignParentTop="true"         android:layout_alignParentRight="true" />        <Button         android:id="@+id/button3"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:text="Bottom Left"         android:layout_alignParentLeft="true"         android:layout_alignParentBottom="true" />        <Button         android:id="@+id/button4"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:text="Bottom Right"         android:layout_alignParentRight="true"         android:layout_alignParentBottom="true" />        <Button         android:id="@+id/button5"         android:layout_width="fill_parent"         android:layout_height="wrap_content"         android:text="Middle"         android:layout_centerVertical="true"         android:layout_centerHorizontal="true" />    </RelativeLayout>

2、在layout-land檔案夾下面的main.xml檔案,注意,它比上面的代碼 多了兩個Button視圖:

<?xml version="1.0" encoding="utf-8"?>    <RelativeLayout     android:layout_width="fill_parent"     android:layout_height="fill_parent"     xmlns:android="http://schemas.android.com/apk/res/android">        <Button         android:id="@+id/button1"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:text="Top Left"         android:layout_alignParentLeft="true"         android:layout_alignParentTop="true" />        <Button         android:id="@+id/button2"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:text="Top Right"         android:layout_alignParentTop="true"         android:layout_alignParentRight="true" />        <Button         android:id="@+id/button3"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:text="Bottom Left"         android:layout_alignParentLeft="true"         android:layout_alignParentBottom="true" />        <Button         android:id="@+id/button4"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:text="Bottom Right"         android:layout_alignParentRight="true"         android:layout_alignParentBottom="true" />        <Button         android:id="@+id/button5"         android:layout_width="fill_parent"         android:layout_height="wrap_content"         android:text="Middle"         android:layout_centerVertical="true"         android:layout_centerHorizontal="true" />        <!-- 新增加的兩個Button -->     <Button         android:id="@+id/button6"         android:layout_width="180px"         android:layout_height="wrap_content"         android:text="Top Middle"         android:layout_centerVertical="true"         android:layout_centerHorizontal="true"         android:layout_alignParentTop="true" />        <Button         android:id="@+id/button7"         android:layout_width="180px"         android:layout_height="wrap_content"         android:text="Bottom Middle"         android:layout_centerVertical="true"         android:layout_centerHorizontal="true"         android:layout_alignParentBottom="true" />    </RelativeLayout>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.