版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
【移动应用开发技术】Android(4.X)学习笔记
Activity启动流程Android操作系统>AndroidManifest.xml>MainAcitivity.onCreate()>activity_main.xml...sp字体大小会随系统设置的改变而变dp字体大小不会随系统设置的改变而变Ctrl+shift+O自动导入Fragment的知识特别重要<LinearLayout
xmlns:android="/apk/res/android"
xmlns:tools="/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#440000"
android:orientation="horizontal"
tools:context=".MainActivity"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginRight="20dp"
android:background="#ff0000"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="first"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="second"/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#ff0000"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="first"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="second"/>
</LinearLayout>
</LinearLayout><LinearLayout
xmlns:android="/apk/res/android"
xmlns:tools="/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:context=".MainActivity"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ff0000"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#00ff00"
android:text="first"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#0000ff"
android:text="second"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ff0000"
>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#00ff00"
android:text="first"
/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="#0000ff"
android:layout_weight="2"
android:text="second"
/>
</LinearLayout>
</LinearLayout><RelativeLayout
xmlns:android="/apk/res/android"
xmlns:tools="/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="15dp"
>
<TextView
android:id="@+id/lableView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="登陆界面"
/>
<EditText
android:id="@+id/usernameText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:hint="username"
android:layout_below="@id/lableView"/>
<EditText
android:id="@+id/passwordText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/usernameText"
android:layout_alignRight="@id/usernameText"
android:hint="password"
android:inputType="textPassword"
android:layout_below="@id/usernameText"/>
<Button
android:id="@+id/cancelButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/passwordText"
android:layout_alignParentRight="true"
android:text="取消"
/>
<Button
android:id="@+id/okButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/cancelButton"
android:layout_toLeftOf="@id/cancelButton"
android:text="确定"/>
</RelativeLayout>
<AnalogClock
android:id="@+id/clock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<DatePicker
android:id="@+id/firstDatePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/firstDatePicker"
android:text="获取DatePicker的值"/>public
class
MainActivity
extends
Activity
{
private
DatePicker
datePicker;
private
Button
button;
@Override
protected
void
onCreate(Bundle
savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
datePicker
=
(DatePicker)findViewById(R.id.firstDatePicker);
datePicker.updateDate(2013,
4,
10);
button
=
(Button)findViewById(R.id.button);
ButtonListener
buttonListener
=
new
ButtonListener();
button.setOnClickListener(buttonListener);
}
class
ButtonListener
implements
OnClickListener{
@Override
public
void
onClick(View
v)
{
int
y
=
datePicker.getYear();
int
m
=
datePicker.getMonth();
int
d
=
datePicker.getDayOfMonth();
System.out.println("y:"
+
y
+
",m"
+
m
+
",d:"
+
d);
Toast.makeText(MainActivity.this,
"y:"
+
y
+
",m"
+
m
+
",d:"
+
d,
Toast.LENGTH_SHORT).show();
}
}
}
<TimePicker
android:id="@+id/firstTimePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/firstTimePicker"
android:text="获取TimePicker的值"
/>public
class
MainActivity
extends
Activity
{
private
TimePicker
firstTimePicker;
private
Button
button;
@Override
protected
void
onCreate(Bundle
savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
firstTimePicker
=
(TimePicker)findViewById(R.id.firstTimePicker);
button
=
(Button)findViewById(R.id.button);
//该函数用于设置是否使用24小时制显示时间
firstTimePicker.setIs24HourView(true);
TimeListener
timeListenter
=
new
TimeListener();
firstTimePicker.setOnTimeChangedListener(timeListenter);
ButtonListener
buttonListener
=
new
ButtonListener();
button.setOnClickListener(buttonListener);
}
class
ButtonListener
implements
OnClickListener{
@Override
public
void
onClick(View
v)
{
int
hour
=
firstTimePicker.getCurrentHour();
int
minute
=
firstTimePicker.getCurrentMinute();
Toast.makeText(MainActivity.this,
"h:"
+
hour
+
",minute:"
+
minute,
Toast.LENGTH_SHORT).show();
}
}
class
TimeListener
implements
OnTimeChangedListener{
/**
*
view:该对象代表着TimePicker
*
hourOfDay:用户所选择的小时
*
minute:用户所选择的分钟
*/
@Override
public
void
onTimeChanged(TimePicker
view,
int
hourOfDay,
int
minute)
{
System.out.println("Hour:"
+
hourOfDay
+
",minute:"
+
minute);
}
}
}
<ProgressBar
android:id="@+id/firstProgressBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/firstButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/firstProgressBar"
android:text="增加第一进度"/>
<Button
android:id="@+id/secondButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/firstButton"
android:text="增加第二进度"/>public
class
MainActivity
extends
Activity
{
private
ProgressBar
progressBar;
private
Button
firstButton;
private
Button
secondButton;
@Override
protected
void
onCreate(Bundle
savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
progressBar
=
(ProgressBar)findViewById(R.id.firstProgressBar);
firstButton
=
(Button)findViewById(R.id.firstButton);
secondButton
=
(Button)findViewById(R.id.secondButton);
progressBar.setMax(100);
firstButton.setOnClickListener(new
FirstListener());
secondButton.setOnClickListener(new
SecondListener());
}
class
FirstListener
implements
OnClickListener{
@Override
public
void
onClick(View
v)
{
progressBar.incrementProgressBy(10);
}
}
class
SecondListener
implements
OnClickListener{
@Override
public
void
onClick(View
v)
{
progressBar.incrementSecondaryProgressBy(20);
}
}
}
<SeekBar
android:id="@+id/firstSeekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="100"
/>public
class
MainActivity
extends
Activity
{
private
SeekBar
seekBar;
@Override
protected
void
onCreate(Bundle
savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
seekBar
=
(SeekBar)findViewById(R.id.firstSeekBar);
seekBar.setProgress(30);
seekBar.setSecondaryProgress(50);
SeekBarListener
listener
=
new
SeekBarListener();
seekBar.setOnSeekBarChangeListener(listener);
}
class
SeekBarListener
implements
OnSeekBarChangeListener{
/**
*
seekBar
该对象指的是触发了监听器的SeekBar对象
*
progress
指的是当前SeekBar的进度
*
fromUser
*/
@Override
public
void
onProgressChanged(SeekBar
SeekBar,
int
progress,
boolean
fromUser)
{
System.out.println("progress:"
+
progress
+
",fromUser:"
+
fromUser);
Toast.makeText(MainActivity.this,
"progress:"
+
progress
+
",fromUser:"
+
fromUser,
Toast.LENGTH_SHORT).show();
}
@Override
public
void
onStartTrackingTouch(SeekBar
seekBar)
{
System.out.println("onStart");
}
@Override
public
void
onStopTrackingTouch(SeekBar
seekBar)
{
System.out.println("onStop");
}
}
}
<RatingBar
android:id="@+id/firstRatingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numStars="4"
android:stepSize="1"
/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/firstRatingBar"
android:text="button"/>public
class
MainActivity
extends
Activity
{
private
RatingBar
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 汽车维修基础培训
- 苏州大学本科招生宣传工作评优暂行办法-苏州大学财务处
- 水手英语《电子版》资料
- 大学体育与健康 教案 体育舞蹈4
- 下一步工作计划(共4篇)
- 湖北汽车工业学院科技学院《基础会计》2022-2023学年第一学期期末试卷
- 思维导图模板手绘可爱
- 施工模板计划表(共3篇)
- 《SDH学习知识总结》课件
- 防疫演讲课件
- 公文写作课件教学课件
- 2024年巴西医疗健康产业发展趋势
- 自然辩证法学习通超星期末考试答案章节答案2024年
- 2024年6月浙江省高考地理试卷真题(含答案逐题解析)
- 中考语文专项必刷题之名著阅读专题(天津版)
- 2024版合伙经营运输车辆合同范本
- 热点主题作文写作指导:多一些尊重理解少一些偏见误解(审题指导与例文)
- +Unit+2+We're+family+Section+A+2a+-+2e+说课稿 人教版(2024)七年级英语上册++
- 防性侵安全教育课件
- 《篮球:行进间单手肩上投篮》教案(四篇)
- 统编版语文四年级上册-习作:记一次游戏-教学课件多篇
评论
0/150
提交评论