`

First day of android study

 
阅读更多

1:Android中TextView中的字体大小设置
可以在XML里面加一句话
android:textSize="15px" 15像素
或者
在 mTextView.setTextSize(size);
2:将以xml类型文件的信息读取并放入到字符串数组中
main.xml:

<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/white"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/login_theme"
android:gravity="center_horizontal"
android:layout_y="50sp"
android:textSize="15px"

/>
<Spinner
android:id="@+id/mySpinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="60sp"
android:layout_y="100sp"

/>



</AbsoluteLayout>
options.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name='option'>
<item>请选择查询类别</item>
<item>快轨查询</item>
<item>公交车查询</item>
<item>火车查询</item>
<item>地铁查询</item>
</string-array>
</resources>

public class MainActivity extends Activity {
private Spinner mySpinner;
private ArrayAdapter<String> adapter;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 载入main.xml Layout
setContentView(R.layout.main);
// 以findViewById()取得mySpinner对象
mySpinner = (Spinner) this.findViewById(R.id.mySpinner);
//将values/options.xml文件取得到字符串数组中
String[] options = this.getResources().getStringArray(R.array.option);

// 创建ArrayAdapter对象
adapter = new ArrayAdapter(this, android.R.layout.simple_spinner_item,
options);
mySpinner.setAdapter(adapter);

}
}



分享到:
评论

相关推荐

    first_day_of_school

    first_day_of_school

    First Code for Android

    《First Code for Android》这本书是Android开发初学者的宝贵资源,它引领读者步入Android编程的世界。"First Code Android"这个标签则明确了书籍的核心内容——针对Android的初阶编程教学。在压缩包中包含的...

    Head First Android Development(Head First Android 开发) 配套源码

    Head First Android Development cuts through the fog of dozens of components, hundreds of API calls and focuses on the core skills you need. Do you want a book that is more than simply a reproduction ...

    Head First Android开发pdf版

    ### Head First Android开发知识点概述 #### 一、Head First Android开发简介 《Head First Android开发》是一本面向初学者及具有一定编程基础读者的Android应用程序开发教程。本书采用Head First系列图书特有的...

    A First Book of C++ 4th Edition

    《A First Book of C++ 4th Edition》是一本针对初学者的经典C++编程教材,旨在引导读者逐步掌握C++语言的基础知识和编程技巧。第四版的更新通常意味着作者已经根据最新的C++标准和教学实践进行了修订,以适应当前的...

    A First Book of ANSI C PPT Chapter 1

    A First Book of ANSI C PPT Chapter 1 Introduction to Computer Programming

    first_day_of_school017

    first_day_of_school017

    Head First Android 开发中文高清完整版PDF

    《Head First Android开发》如果你有一个很好的想法,要开发一流的Android应用,这本书会帮你用最快的速度构建你的第一个实际应用。你会学到一些实践技巧,掌握如何建立应用的结构,如何设计界面,如何创建数据库,...

    Head first android development 2nd

    ### Head First Android Development 第二版知识点总结 #### 一、书籍基本信息及背景介绍 - **书名**:《Head First Android Development》第二版 - **作者**:Dawn Griffiths & David Griffiths(主要作者);...

    Head First Android Development英文版

    《Head First Android Development》是专为初学者设计的一本深入浅出的Android应用开发指南,旨在帮助读者以直观、易理解的方式掌握Android开发的核心概念和技术。这本书采用了Head First系列独特的教学风格,通过...

    Head First Android Development 读书笔记

    Head First Android Development 读书笔记

    The first line of code

    《第一行代码》是郭霖撰写的一本针对Android开发的入门书籍,它的核心目标是帮助初学者快速理解和掌握Android应用开发的基本技能。书中的内容详细且深入浅出,旨在通过实例来驱动学习,让读者在实践中理解编程的概念...

    The first principle study of adsorption for two halogens on fused silica surface

    卤素吸附在融石英表面的第一性原理研究,张仓胜,芦鹏飞,在融石英材料的制备过程中会不可避免地引入的卤素杂质粒子,这将影响由熔石英材料制造的光学元器件的损伤阈值和光学性质,而杂质

    Head First Android开发 中文版

    《Head First Android开发》如果你有一个很好的想法,要开发一流的Android应用,这本书会帮你用zui快的速度构建你的第yi个实际应用。你会学到一些实践技巧,掌握如何建立应用的结构,如何设计界面,如何创建数据库,...

    Head First Android Development(中文高清版_PART1)

    《Head First Android开发》由于本书为中文高清版,文件较大,特压缩成2个压缩文件包,方便上传与下载,请各位见谅,此书仅供学习与参考使用! Head First Android Development(中文高清版_PART1) Head First ...

Global site tag (gtag.js) - Google Analytics