scrollview就是乙個可以滾動的view,這個滾動的方向是垂直方向的,而horizontalscrollview則是乙個水平方向的可以滾動的view。二者用法一樣,這裡就以scrollview為例寫乙個小小的例子。
首先看一下main.xml**:
<?xml version="1.0" encoding="utf-8"?>
xmlns:android=""
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_width="match_parent"
android:layout_height="match_parent">
layout="@layout/main_content"/>
scrollview>
linearlayout>
這裡的include引入的是內容,也可以是乙個非常複雜的布局檔案。放在scrollview裡面後,就變成可上下滑動了。
main_content.xml裡面是一段用來顯示效果的長段文字。這裡就不貼出來了。
然後看一下效果圖:
這就是簡單又實用的滾動控制項scrollview。。。
Android 12 顯示控制項使用
android的介面顯示同樣也是基於控制項的。通常是用view 包括viewgroup 控制項配上xml的樣式來做的。具體細節不想說了,可以參考 samples裡的apidemos view,和view的doc,以及implementing a ui這篇doc。其他還有很多,感覺算是sdk講述的最多...
Android控制項
edittext是輸入文字框,可以進行文字編輯 imageview是顯示的乙個控制項 android id 控制項的id android layout width 控制項的寬度 android layout height 控制項的高度 還有一下屬性 android text 文字內容 android...
Android時間控制項
在寫滾輪時間控制項時,時間控制項中傳過去一時間,經過date轉換成calendar時,發現時間發生了變化,後來想方設 法把時間控制項在pad上修改好,在另一型號的pad上執行發現時間還是發生了錯位,例如2016 1 26,date轉換成 calendar後,變成了2016 1 25,發現這個問題很是...