[Android] Layout
时间:2010-05-06 来源:web_surf
- Document
http://developer.android.com/guide/topics/ui/declaring-layout.html
http://developer.android.com/guide/topics/ui/layout-objects.html
- FrameLayout
- LinearLayout
- TableLayout
- RelativeLayout
- ...
- Sample
- A text view sith scroll bar at the top of window, and a button locates at the bottom of the window.
<RelativeLayout ...>
<ScrollView
android:layout_alignParentTop="true"
android:layout_above="@+id/my_id"
...>
<TextView .../>
</ScrollView>
<Button android:id="@+id/my_btn"
...
android:layout_alignParentBottom="true"
/>
</RelativeLayout> - ...
- ...
相关阅读 更多 +
排行榜 更多 +