欢迎来到天天文库
浏览记录
ID:37151779
大小:339.50 KB
页数:18页
时间:2019-05-19
《Android开发教程笔记--UI编程1》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、-----------------------------------Android编程基础Android基础UI编程1更改与显示文字标签TextView标签的使用① 导入TextView包importandroid.widget.TextView;② 在mainActivity.java中声明一个TextViewprivateTextViewmTextView01;③ 在main.xml中定义一个TextView2、d="@+id/TextView01"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_x="61px"android:layout_y="69px">④ 利用findViewById()方法获取main.xml中的TextViewmTextView01=(TextView)findViewById(R.id.TextView01);⑤ 设置TextView3、标签内容Stringstr_2="欢迎来到Android的TextView世界...";mTextView01.setText(str_2);⑥ 设置文本超级链接4、per.android.com/index.html">18-----------------------------------Android编程基础android.graphics.Color实践----Color颜色变幻android.graphics.Color包含颜色值Color.BLACKColor.BLUEColor.CYANColor.DKGRAYColor.GRAYColor.GREENColor.LTGRAYColor.MAGENTAColor.REDCol5、or.TRANSPARENTColor.WHITEColor.YELLOW黑色蓝色青绿色灰黑色灰色绿色浅灰色红紫色红色透明白色黄色编程实现颜色变幻① 新建工程② 修改mainActivity.java文件,添加12个TextView对象变量,一个LinearLayout对象变量、一个WC整数变量、一个LinearLayout.LayoutParams变量。packagezyf.ManyColorME;/*导入要使用的包*/importandroid.app.Activity;importandroi6、d.graphics.Color;importandroid.os.Bundle;importandroid.widget.LinearLayout;importandroid.widget.TextView;publicclassManyColorMEextendsActivity{/**Calledwhentheactivityisfirstcreated.*//*定义使用的对象*/privateLinearLayoutmyLayout;privateLinearLayout.LayoutPar7、amslayoutP;privateintWC=LinearLayout.LayoutParams.WRAP_CONTENT;privateTextViewblack_TV,blue_TV,cyan_TV,dkgray_TV,gray_TV,green_TV,ltgray_TV,magenta_TV,red_TV,18-----------------------------------Android编程基础transparent_TV,white_TV,yellow_TV;@Overridepub8、licvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);/*实例化一个LinearLayout布局对象*/myLayout=newLinearLayout(this);/*设置LinearLayout的布局为垂直布局*/myLayout.setOrientation(LinearLayout.VERTICAL);/*设置LinearLayout布局背景图片*/myLayo
2、d="@+id/TextView01"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_x="61px"android:layout_y="69px">④ 利用findViewById()方法获取main.xml中的TextViewmTextView01=(TextView)findViewById(R.id.TextView01);⑤ 设置TextView
3、标签内容Stringstr_2="欢迎来到Android的TextView世界...";mTextView01.setText(str_2);⑥ 设置文本超级链接4、per.android.com/index.html">18-----------------------------------Android编程基础android.graphics.Color实践----Color颜色变幻android.graphics.Color包含颜色值Color.BLACKColor.BLUEColor.CYANColor.DKGRAYColor.GRAYColor.GREENColor.LTGRAYColor.MAGENTAColor.REDCol5、or.TRANSPARENTColor.WHITEColor.YELLOW黑色蓝色青绿色灰黑色灰色绿色浅灰色红紫色红色透明白色黄色编程实现颜色变幻① 新建工程② 修改mainActivity.java文件,添加12个TextView对象变量,一个LinearLayout对象变量、一个WC整数变量、一个LinearLayout.LayoutParams变量。packagezyf.ManyColorME;/*导入要使用的包*/importandroid.app.Activity;importandroi6、d.graphics.Color;importandroid.os.Bundle;importandroid.widget.LinearLayout;importandroid.widget.TextView;publicclassManyColorMEextendsActivity{/**Calledwhentheactivityisfirstcreated.*//*定义使用的对象*/privateLinearLayoutmyLayout;privateLinearLayout.LayoutPar7、amslayoutP;privateintWC=LinearLayout.LayoutParams.WRAP_CONTENT;privateTextViewblack_TV,blue_TV,cyan_TV,dkgray_TV,gray_TV,green_TV,ltgray_TV,magenta_TV,red_TV,18-----------------------------------Android编程基础transparent_TV,white_TV,yellow_TV;@Overridepub8、licvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);/*实例化一个LinearLayout布局对象*/myLayout=newLinearLayout(this);/*设置LinearLayout的布局为垂直布局*/myLayout.setOrientation(LinearLayout.VERTICAL);/*设置LinearLayout布局背景图片*/myLayo
4、per.android.com/index.html">18-----------------------------------Android编程基础android.graphics.Color实践----Color颜色变幻android.graphics.Color包含颜色值Color.BLACKColor.BLUEColor.CYANColor.DKGRAYColor.GRAYColor.GREENColor.LTGRAYColor.MAGENTAColor.REDCol
5、or.TRANSPARENTColor.WHITEColor.YELLOW黑色蓝色青绿色灰黑色灰色绿色浅灰色红紫色红色透明白色黄色编程实现颜色变幻① 新建工程② 修改mainActivity.java文件,添加12个TextView对象变量,一个LinearLayout对象变量、一个WC整数变量、一个LinearLayout.LayoutParams变量。packagezyf.ManyColorME;/*导入要使用的包*/importandroid.app.Activity;importandroi
6、d.graphics.Color;importandroid.os.Bundle;importandroid.widget.LinearLayout;importandroid.widget.TextView;publicclassManyColorMEextendsActivity{/**Calledwhentheactivityisfirstcreated.*//*定义使用的对象*/privateLinearLayoutmyLayout;privateLinearLayout.LayoutPar
7、amslayoutP;privateintWC=LinearLayout.LayoutParams.WRAP_CONTENT;privateTextViewblack_TV,blue_TV,cyan_TV,dkgray_TV,gray_TV,green_TV,ltgray_TV,magenta_TV,red_TV,18-----------------------------------Android编程基础transparent_TV,white_TV,yellow_TV;@Overridepub
8、licvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);/*实例化一个LinearLayout布局对象*/myLayout=newLinearLayout(this);/*设置LinearLayout的布局为垂直布局*/myLayout.setOrientation(LinearLayout.VERTICAL);/*设置LinearLayout布局背景图片*/myLayo
此文档下载收益归作者所有