摘要:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <ImageView android:id="@+id/imageView1" android:layout_width=&quo 阅读全文
摘要:
在Android SDK安装路径下的tools目录下找到draw9path.bat,双击运行。制作9Path图片。layout.xml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_paren 阅读全文
摘要:
设置ImageButton的图片可通过android:src属性,也可以通过setImageResource(int)方法来实现。 ImageButton所显示的图片若不能完全覆盖掉背景色时,使用ImageButton一般要将背景色设置为其他图片或直接设置为透明。<?xml version="1.0" encoding="utf-8"?><TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation 阅读全文
摘要:
3 RelativeLayout子控件的位置是相对兄弟控件或父控件的位置而决定的。ViewA的位置相对于ViewB来决定,要保证B出现在A之前。属性名称属性说明android:layout_centerHorizontal当前控件位于父控件的横向中间位置android:layout_centerVertical当前控件位于父控件的纵向中间位置android:layout_centerParent当前控件位于父控件的纵横向中间位置android:layout_alignParentBottom当前控件低端与父控件的低端对齐android:layout_alignParentLeft当前控件左端与 阅读全文
摘要:
2 表格布局 TableLayoutTableLayout类以行和列的形式管理控件,每行为一个TableRow对象,也可以为一个View对象,当为View对象时,该对象将很跨改行所有列。可以设置列为以下属性Shrinkable:该列的宽度可以收缩,以使表格能适应其父容器大小 Stretchable:该列宽度可以拉伸,…… Collapsed:该列被隐藏属性名称对应方法描述android:collapseColumnssetCollapsed(int,boolean)列好从0开始android:shrinkColumssetShrinkColumns(boolean)android:stretc 阅读全文