安卓技术教程的分享能让学生在安卓课程的学习中掌握更多的知识。北大青鸟武汉宏鹏鲁广校区将安卓技术教程进行总结,希望能帮到学习安卓的朋友。
文本框(TextView):
setTextColor(Color.RED);
setTextSize(20);
setBackgroundColor(Color.BLUE);
setText(string);
< TextView
android:id="@+id/textview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
TextView对象方法与对应的XML属性
------------------------------------------|---------------------------------------------
TextView对象方法 XML属性
------------------------------------------|---------------------------------------------
setTextColor android:textColor
------------------------------------------|---------------------------------------------
setTextSize android:textSize
------------------------------------------|---------------------------------------------
setText android:text
------------------------------------------|---------------------------------------------
setBackgroundResource android:background
------------------------------------------|---------------------------------------------
setHeight/setWidth android:height/android:width
------------------------------------------|---------------------------------------------
列表(ListView)
setOnItemSelectedListener();
setOnItemClickListener();
提示(Toast)
Toast.makeText(this, String, Toast.LENGTH_SHORT).show();
编辑框(EditText)
setHint();
单项选择(RadioGroup, RadioButton)
setOnCheckedChangeListener();
多项选择(CheckBox)
setOnCheckedChangeListener();
isChecked();
下拉列表(Spinner)
setOnItemSelectedListener()
onItemSelected();
setVisibility()
自动提示(AutoCompleteTextView)
AutoCompleteTextView
setAdapter();
setTokenizer();
MultiAutoCompleteTextView
日期和时间(DatePicker, TimePicker)
onDateChangedListener();
setOnTimeChangedListener();
按钮(Button)
setOnClickListener();
setText();
setWidth();
setTextColor();
setTextSize()
setBackgroundColor();
安卓技术教程的更多学习请点击在线老师进行咨询或进入北大青鸟武汉宏鹏鲁广校区中点击课程进行咨询。
看过该安卓技术教程的还看过
本文标题:#安卓技术教程之Android程序UI的常用控件应用#,宏鹏发布于北大青鸟光谷校区。安卓技术教程的分享能让学生在安卓课程的学习中掌握更多的知识。北大青鸟武汉宏鹏鲁广校区将安卓技术教程进行总结,希望能帮到学习安卓的朋友。