欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    Android开发教程笔记--UI编程1.doc

    • 资源ID:70343731       资源大小:339.50KB        全文页数:18页
    • 资源格式: DOC        下载积分:15金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要15金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    Android开发教程笔记--UI编程1.doc

    -Android编程基础Android 基础UI编程 1更改与显示文字标签TextView 标签的使用 导入TextView包import android.widget.TextView; 在mainActivity.java中声明一个TextViewprivate TextView mTextView01; 在main.xml中定义一个TextView <TextView android:text="TextView01" android:id="+id/TextView01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_x="61px" android:layout_y="69px"> </TextView> 利用findViewById()方法获取main.xml中的TextView mTextView01 = (TextView) findViewById(R.id.TextView01); 设置TextView标签内容 String str_2 = "欢迎来到Android 的TextView 世界." mTextView01.setText(str_2); 设置文本超级链接<TextView android:id="+id/TextView02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:autoLink="all" android:text="请访问Android 开发者: </TextView>android.graphics.Color实践-Color颜色变幻android.graphics.Color包含颜色值Color.BLACK Color.BLUE Color.CYAN Color.DKGRAY Color.GRAY Color.GREEN Color.LTGRAY Color.MAGENTA Color.RED Color.TRANSPARENT Color.WHITE Color.YELLOW 黑色蓝色青绿色灰黑色灰色绿色浅灰色红紫色红色透明白色黄色编程实现颜色变幻 新建工程 修改mainActivity.java文件,添加12个TextView对象变量,一个LinearLayout对象变量、一个WC整数变量、一个LinearLayout.LayoutParams变量。package zyf.ManyColorME;/*导入要使用的包*/import android.app.Activity;import android.graphics.Color;import android.os.Bundle;import android.widget.LinearLayout;import android.widget.TextView;public class ManyColorME extends Activity /* Called when the activity is first created. */* 定义使用的对象 */private LinearLayout myLayout;private LinearLayout.LayoutParams layoutP;private int WC = LinearLayout.LayoutParams.WRAP_CONTENT;private TextView black_TV, blue_TV, cyan_TV, dkgray_TV, gray_TV, green_TV,ltgray_TV, magenta_TV, red_TV, transparent_TV, white_TV, yellow_TV;Overridepublic void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState);/* 实例化一个LinearLayout布局对象 */myLayout = new LinearLayout(this);/* 设置LinearLayout的布局为垂直布局 */myLayout.setOrientation(LinearLayout.VERTICAL);/* 设置LinearLayout布局背景图片 */myLayout.setBackgroundResource(R.drawable.back);/* 加载主屏布局 */setContentView(myLayout);/* 实例化一个LinearLayout布局参数,用来添加View */layoutP = new LinearLayout.LayoutParams(WC, WC);/* 构造实例化TextView对象 */constructTextView();/* 把TextView添加到LinearLayout布局中 */addTextView();/* 设置TextView文本颜色 */setTextViewColor();/* 设置TextView文本内容 */setTextViewText();/* 设置TextView文本内容 */public void setTextViewText() black_TV.setText("黑色");blue_TV.setText("蓝色");cyan_TV.setText("青绿色");dkgray_TV.setText("灰黑色");gray_TV.setText("灰色");green_TV.setText("绿色");ltgray_TV.setText("浅灰色");magenta_TV.setText("红紫色");red_TV.setText("红色");transparent_TV.setText("透明");white_TV.setText("白色");yellow_TV.setText("黄色");/* 设置TextView文本颜色 */public void setTextViewColor() black_TV.setTextColor(Color.BLACK);blue_TV.setTextColor(Color.BLUE);dkgray_TV.setTextColor(Color.DKGRAY);gray_TV.setTextColor(Color.GRAY);green_TV.setTextColor(Color.GREEN);ltgray_TV.setTextColor(Color.LTGRAY);magenta_TV.setTextColor(Color.MAGENTA);red_TV.setTextColor(Color.RED);transparent_TV.setTextColor(Color.TRANSPARENT);white_TV.setTextColor(Color.WHITE);yellow_TV.setTextColor(Color.YELLOW);/* 构造实例化TextView对象 */public void constructTextView() black_TV = new TextView(this);blue_TV = new TextView(this);cyan_TV = new TextView(this);dkgray_TV = new TextView(this);gray_TV = new TextView(this);green_TV = new TextView(this);ltgray_TV = new TextView(this);magenta_TV = new TextView(this);red_TV = new TextView(this);transparent_TV = new TextView(this);white_TV = new TextView(this);yellow_TV = new TextView(this);/* 把TextView添加到LinearLayout布局中 */public void addTextView() myLayout.addView(black_TV, layoutP);myLayout.addView(blue_TV, layoutP);myLayout.addView(cyan_TV, layoutP);myLayout.addView(dkgray_TV, layoutP);myLayout.addView(gray_TV, layoutP);myLayout.addView(green_TV, layoutP);myLayout.addView(ltgray_TV, layoutP);myLayout.addView(magenta_TV, layoutP);myLayout.addView(red_TV, layoutP);myLayout.addView(transparent_TV, layoutP);myLayout.addView(white_TV, layoutP);myLayout.addView(yellow_TV, layoutP); 结果android.graphics.Typeface实践字体风格Typeface种类int Style类型BOLDBOLD_ITALICITALICNORMAL粗体粗斜体斜体普通字体Typeface类型DEFAULTDEFAULT_BOLDMONOSPACESANS_SERIFSERIF默认字体默认粗体单间隔字体无衬线字体衬线字体Typeface.create(Typeface family,int style)创建一个混合型新的字体:有4*5中搭配Typeface.setTypeface (Typeface tf, int style) 设置一个混合型字体:有4*5中搭配Typeface.setTypeface(Typeface tf)设置一个只有Typeface风格的字体:有五种形式编程实现以上静态域字体 创建新工程 修改mianActivity.java,实现多种字体TextView显示package zyf.TypefaceStudy;/*导入要使用的包*/import android.app.Activity;import android.graphics.Color;import android.graphics.Typeface;import android.os.Bundle;import android.view.ViewGroup;import android.widget.LinearLayout;import android.widget.TextView;public class TypefaceStudy extends Activity /* Called when the activity is first created. */* * android.graphics.Typeface java.lang.Object Typeface类指定一个字体的字体和固有风格. * 该类用于绘制,与可选绘制设置一起使用, 如textSize, textSkewX, textScaleX 当绘制(测量)时来指定如何显示文本. */* 定义实例化一个 布局大小,用来添加TextView */final int WRAP_CONTENT = ViewGroup.LayoutParams.WRAP_CONTENT;/* 定义TextView对象 */private TextView bold_TV, bold_italic_TV, default_TV, default_bold_TV,italic_TV,monospace_TV, normal_TV,sans_serif_TV,serif_TV;/* 定义LinearLayout布局对象 */private LinearLayout linearLayout;/* 定义LinearLayout布局参数对象 */private LinearLayout.LayoutParams linearLayouttParams;Overridepublic void onCreate(Bundle icicle) super.onCreate(icicle);/* 定义实例化一个LinearLayout对象 */linearLayout = new LinearLayout(this);/* 设置LinearLayout布局为垂直布局 */linearLayout.setOrientation(LinearLayout.VERTICAL);/*设置布局背景图*/linearLayout.setBackgroundResource(R.drawable.back);/* 加载LinearLayout为主屏布局,显示 */setContentView(linearLayout);/* 定义实例化一个LinearLayout布局参数 */linearLayouttParams = new LinearLayout.LayoutParams(WRAP_CONTENT,WRAP_CONTENT);constructTextView();setTextSizeOf();setTextViewText() ;setStyleOfFont();setFontColor();toAddTextViewToLayout();public void constructTextView() /* 实例化TextView对象 */bold_TV = new TextView(this);bold_italic_TV = new TextView(this);default_TV = new TextView(this);default_bold_TV = new TextView(this);italic_TV = new TextView(this);monospace_TV=new TextView(this);normal_TV=new TextView(this);sans_serif_TV=new TextView(this);serif_TV=new TextView(this);public void setTextSizeOf() / 设置绘制的文本大小,该值必须大于0bold_TV.setTextSize(24.0f);bold_italic_TV.setTextSize(24.0f);default_TV.setTextSize(24.0f);default_bold_TV.setTextSize(24.0f);italic_TV.setTextSize(24.0f);monospace_TV.setTextSize(24.0f);normal_TV.setTextSize(24.0f);sans_serif_TV.setTextSize(24.0f);serif_TV.setTextSize(24.0f);public void setTextViewText() /* 设置文本 */bold_TV.setText("BOLD");bold_italic_TV.setText("BOLD_ITALIC");default_TV.setText("DEFAULT");default_bold_TV.setText("DEFAULT_BOLD");italic_TV.setText("ITALIC");monospace_TV.setText("MONOSPACE");normal_TV.setText("NORMAL");sans_serif_TV.setText("SANS_SERIF");serif_TV.setText("SERIF");public void setStyleOfFont() /* 设置字体风格 */bold_TV.setTypeface(null, Typeface.BOLD);bold_italic_TV.setTypeface(null, Typeface.BOLD_ITALIC);default_TV.setTypeface(Typeface.DEFAULT);default_bold_TV.setTypeface(Typeface.DEFAULT_BOLD);italic_TV.setTypeface(null, Typeface.ITALIC);monospace_TV.setTypeface(Typeface.MONOSPACE);normal_TV.setTypeface(null, Typeface.NORMAL);sans_serif_TV.setTypeface(Typeface.SANS_SERIF);serif_TV.setTypeface(Typeface.SERIF);public void setFontColor() /* 设置文本颜色 */bold_TV.setTextColor(Color.BLACK);bold_italic_TV.setTextColor(Color.CYAN);default_TV.setTextColor(Color.GREEN);default_bold_TV.setTextColor(Color.MAGENTA);italic_TV.setTextColor(Color.RED);monospace_TV.setTextColor(Color.WHITE);normal_TV.setTextColor(Color.YELLOW);sans_serif_TV.setTextColor(Color.GRAY);serif_TV.setTextColor(Color.LTGRAY);public void toAddTextViewToLayout() /* 把TextView加入LinearLayout布局中 */linearLayout.addView(bold_TV, linearLayouttParams);linearLayout.addView(bold_italic_TV, linearLayouttParams);linearLayout.addView(default_TV, linearLayouttParams);linearLayout.addView(default_bold_TV, linearLayouttParams);linearLayout.addView(italic_TV, linearLayouttParams);linearLayout.addView(monospace_TV, linearLayouttParams);linearLayout.addView(normal_TV, linearLayouttParams);linearLayout.addView(sans_serif_TV, linearLayouttParams);linearLayout.addView(serif_TV, linearLayouttParams); 结果更改手机窗口画面底色drawable 定义颜色常数的方法 编写main布局<?xml version="1.0" encoding="utf-8"?><AbsoluteLayout android:id="+id/widget0" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="><TextView android:id="+id/name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="账号" android:layout_x="61px" android:layout_y="69px"></TextView><TextView android:id="+id/password" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="密码" android:layout_x="61px" android:layout_y="158px"></TextView><EditText android:id="+id/name_in" android:layout_width="120dip" android:layout_height="wrap_content" android:textSize="18sp" android:layout_x="114px" android:layout_y="57px"></EditText><EditText android:id="+id/pwd_in" android:layout_width="120dip" android:layout_height="wrap_content" android:textSize="18sp" android:password="true" android:layout_x="112px" android:layout_y="142px"></EditText></AbsoluteLayout> 在values文件夹中定义一个drawable.xml文件 用来存放颜色值<?xml version="1.0" encoding="utf-8"?><resources> <color name="white">#FFFFFF</color> <color name="darkgray">#938192</color> <color name="lightgreen">#7cd12e</color></resources> 修改main.xml中的屏幕背景颜色和TextView的字体颜色<AbsoluteLayout android:id="+id/widget0" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="color/white" xmlns:android="><TextView android:id="+id/name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="账号" android:textColor="color/darkgray" android:layout_x="61px" android:layout_y="69px"></TextView><TextView android:id="+id/password" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="密码" android:textColor="color/darkgray" android:layout_x="61px" android:layout_y="158px"> 在mainActivity.java代码中修改TextView背景颜色 public void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState); setContentView(R.layout.main); TextView text=(TextView)findViewById(R.id.name); /由ID获得资源 Resources myColor=getBaseContext().getResources(); /getBaseContext()获得基础Context /getResources()获得资源 Drawable color_M=myColor.getDrawable(R.color.lightgreen); /由资源 myColor来获得Drawable R.color.lightgreen是颜色值的ID引用 text.setBackgroundDrawable(color_M); /设置背景 结果:代码中更改TextView 文字颜色 创建工程 编写布局 main.xml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android=" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" ><TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="string/hello" /><TextView android:text="TextView01" android:id="+id/TextView01" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView><TextView android:text="这里使用Graphics颜色静态常量" android:id="+id/TextView02" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView></LinearLayout> 新加drawable.xml,其中添加一个white颜色值<?xml version="1.0" encoding="utf-8"?><resources> <color name="white">#ffffffff</color></resources> 在代码中由ID获取TextView TextView text_A=(TextView)findViewById(R.id.TextView01); TextView text_B=(TextView)findViewById(R.id.TextView02); 获取Resources 对象Resources myColor_R=getBaseContext().getResources();/getBaseContext()获得基础Context/getResources()从Context获取资源实例对象 获取Drawable对象Drawable myColor_D=myColor_R.getDrawable(R.color.white); 设置文本背景颜色text_A.setBackgroundDrawable(myColor_D); 利用android.graphics.Color 的颜色静态变量来改变文本颜色text_A.setTextColor(android.graphics.Color.GREEN); 利用Color的静态常量来设置文本颜色text_B.setTextColor(Color.RED);置换TextView 文字CharSequence 数据类型与Resource ID 应用 创建新工程 修改main.xml布局,新增一个TextView<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android=" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" ><TextView android:text="string/str_2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="+id/myTextView2"/></LinearLayout> 在string.xml中添加字符串 str_2:<?xml version="1.0" encoding="utf-8"?><resources> <string name="hello">Hello World, Ex4_UI!</string> <string name="app_name">Ex4_UI</string> <string name="str_2">我是Resource里的&quot;字符串&quot;</string></resources> 在mainActivity.java中findViewByID()获取TextView

    注意事项

    本文(Android开发教程笔记--UI编程1.doc)为本站会员(asd****56)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开