我的android总结
Android总结
我的android总结
这个学期开始学习android来已经有一个月时间了,在学习过程里收获很多,也遇到了许多问题,在一次次的解惑过程中发现我对这门课程很有兴趣,并且有信心学好它。
学会了textview ,button ,editText ,imageview ,imagebutton ,checkbox ,radiogroup等等控件的使用方法和各自特性。
TextView:显示文本信息
Button:普通按钮
EditText:可编辑的文本框
ImageView:现实图片
ImageButton:图片按钮
RadioGroup:单选按钮
等等
也学会并实践了各种布局方法,试着去完成了几个小作业,虽然遇到了一些不懂得地方,但解决过程还是挺顺利。
例如<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal">
</LinearLayout>
以及还有各种点击事件监听等等
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}

浙公网安备 33010602011771号