Android组件属性学习

1.android:adjustViewBounds
是否保持宽高比。需要与maxWidth、MaxHeight一起使用,否则单独使用没有效果


2.layout_width="wrap_content"  
wrap_conten:根据组件的内容自动调整组件大小 fill_parent: 水平或垂直填充父组件


3.android:layout_toRightOf="@+id/otherId"位于otherId的右边.


4:android:layout_alignParentRight="true":当前控件的右边与父容器的右边对齐.


5.android:layout_alignWithParentIfMissing 如果对应的兄弟元素找不到的话就以父元素做参照物

 

6.android:scrollbars="vertical":当你的内容超过了屏幕的尺寸时,它可以滚动显示

 

7.requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS):控制主窗体的显示方式.

更详细内容: http://archive.cnblogs.com/a/1892143/

你可能感兴趣的:(android)