Android APP開發活用範例速查大辭典(Ch0133-使用ImageView捲動大於畫面的圖片)

Android APP開發活用範例速查大辭典(Ch0133-使用ImageView捲動大於畫面的圖片)

Android APP開發活用範例速查大辭典(Ch0133-使用ImageView捲動大於畫面的圖片)

 

GUI-XML

 

<ScrollView xmlns:android=”http://schemas.android.com/apk/res/android”
android:layout_width=”match_parent”
android:layout_height=”match_parent” >

 

<HorizontalScrollView
android:layout_width=”match_parent”
android:layout_height=”match_parent” >

 

<LinearLayout
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:orientation=”vertical” >

 

<ImageView
android:layout_width=”@dimen/ch0133_image_size”
android:layout_height=”@dimen/ch0133_image_size”
android:background=”@drawable/ch0133_bg_main” />
</LinearLayout>
</HorizontalScrollView>

 

</ScrollView>

 

PS

01.滾動視圖(ScrollView)是一個可以滾動的佈局容器, 允許它大於物理顯示. 滾動視圖(ScrollView)是一個框佈局(FrameLayout), 這意味著你應該將一個包含全部滾動內容的子項放進去. 該子項本身可以是一個帶有複雜對象的佈局管理器(layout manager).

02.水平滾動視圖(HorizontalScrollView)是一個可以水平方向滾動的佈局容器, 允許它大於物理顯示. 水平滾動視圖(HorizontalScrollView)是一個框佈局.

03.有需要相關檔案請留言

 

 

 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *