android学习记录(三) UI界面

  1. 在.java文件中使用setContentView(R.layout.test)方法,调用相应的.xml文件.该方法是写在onCreate这个内部类中.其中test是.xml文件的名称.

2.   android:layout_width="match_parent"//

    android:layout_height="match_parent"//

    android:layout_gravity="center"//对其方式

    android:id="@+id/ll"  //id属性

    android:background="@drawable/abc_btn_radio_material"//背景

    android:orientation="vertical"//方向(重置还是水平)

转载于:https://www.cnblogs.com/CrazyKing/p/5315506.html

你可能感兴趣的:(移动开发,ui,java)