返回列表 發帖

CollapsingToolbarLayout (二)

本帖最後由 tonyh 於 2018-4-28 18:42 編輯







android:text="星座是指天上一群群的恆星組合。自從古代以來,人類便把三五成群的恆星與他們神話中的人物或器具聯繫起來,稱之為「星座」。\n\n星座幾乎是所有文明中確定天空方位的手段,在航海領域應用頗廣。對星座的劃分完全是人為的,不同的文明對於其劃分和命名都不盡相同。\n\n星座一直沒有統一規定的精確邊界,直到1930年,國際天文學聯合會為了統一繁雜的星座劃分,用精確的邊界把天空分為八十八個正式的星座,使天空多數恆星都屬於某一特定星座。\n\n這些正式的星座大多都以中世紀傳下來的古希臘傳統星座為基礎。與此相對地,有一些廣泛流傳但是沒有被認可為正式星座的星星的組合叫做星群,例如北斗七星(參見恆星統稱列表)。\n\n在三維的宇宙中,這些恆星其實相互間不一定有實際的關係,不過其在天球這一個球殼面上的位置相近,而其實它們之間可能相距很遠。如果我們身處銀河中另一太陽系,我們看到的星空將會完全不同。\n\n自古以來,人們對於恆星的排列和形狀很感興趣,並很自然地把一些位置相近的星聯繫起來組成星座。"

layout/activity_main.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     xmlns:app="http://schemas.android.com/apk/res-auto"
  4.     xmlns:tools="http://schemas.android.com/tools"
  5.     android:layout_width="match_parent"
  6.     android:layout_height="match_parent"
  7.     tools:context=".MainActivity">

  8.     <android.support.design.widget.AppBarLayout
  9.         android:id="@+id/appbar"
  10.         android:layout_width="match_parent"
  11.         android:layout_height="240dp">

  12.         <android.support.design.widget.CollapsingToolbarLayout
  13.             android:id="@+id/collapsingToolbar"
  14.             android:layout_width="match_parent"
  15.             android:layout_height="match_parent"
  16.             app:contentScrim="@color/colorPrimary"
  17.             app:layout_scrollFlags="scroll|exitUntilCollapsed"
  18.             app:title="@string/app_name">

  19.             <ImageView
  20.                 android:layout_width="match_parent"
  21.                 android:layout_height="match_parent"
  22.                 android:scaleType="centerCrop"
  23.                 android:src="@drawable/shutterstock"
  24.                 app:layout_collapseMode="parallax" />

  25.             <android.support.v7.widget.Toolbar
  26.                 android:id="@+id/toolbar"
  27.                 android:layout_width="match_parent"
  28.                 android:layout_height="?attr/actionBarSize"/>

  29.         </android.support.design.widget.CollapsingToolbarLayout>

  30.     </android.support.design.widget.AppBarLayout>

  31.     <android.support.v4.widget.NestedScrollView
  32.         android:id="@+id/nestedScrollView"
  33.         android:layout_width="match_parent"
  34.         android:layout_height="match_parent"
  35.         app:layout_behavior="@string/appbar_scrolling_view_behavior">

  36.         <LinearLayout
  37.             android:layout_width="match_parent"
  38.             android:layout_height="match_parent"
  39.             android:orientation="vertical">

  40.             <TextView
  41.                 android:layout_width="match_parent"
  42.                 android:layout_height="match_parent"
  43.                 android:layout_margin="30dp"
  44.                 android:text="星座是指天上一群群的恆星組合。自從古代以來,人類便把三五成群的恆星與他們神話中的人物或器具聯繫起來,稱之為「星座」。\n\n星座幾乎是所有文明中確定天空方位的手段,在航海領域應用頗廣。對星座的劃分完全是人為的,不同的文明對於其劃分和命名都不盡相同。\n\n星座一直沒有統一規定的精確邊界,直到1930年,國際天文學聯合會為了統一繁雜的星座劃分,用精確的邊界把天空分為八十八個正式的星座,使天空多數恆星都屬於某一特定星座。\n\n這些正式的星座大多都以中世紀傳下來的古希臘傳統星座為基礎。與此相對地,有一些廣泛流傳但是沒有被認可為正式星座的星星的組合叫做星群,例如北斗七星(參見恆星統稱列表)。\n\n在三維的宇宙中,這些恆星其實相互間不一定有實際的關係,不過其在天球這一個球殼面上的位置相近,而其實它們之間可能相距很遠。如果我們身處銀河中另一太陽系,我們看到的星空將會完全不同。\n\n自古以來,人們對於恆星的排列和形狀很感興趣,並很自然地把一些位置相近的星聯繫起來組成星座。"
  45.                 android:textSize="20sp" />

  46.         </LinearLayout>
  47.     </android.support.v4.widget.NestedScrollView>
  48. </android.support.design.widget.CoordinatorLayout>
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見
羽毛神在此

TOP

此帖僅作者可見
كخخخخخخخخخخخخخ

TOP

返回列表