今日開始用Android Studio寫Java代碼了氓润,第一次接觸和學(xué)習(xí)钱骂,有點(diǎn)懵懵的,相信堅(jiān)持練習(xí)芋哭,會熟練的!
摘要
- (activity_main.xml)頁面布局代碼
- (MainActivity.java)效果實(shí)現(xiàn)代碼
- 二者之間的關(guān)系:
activity_main.xml其實(shí)是一個(gè)布局文件郁副,我們頁面需要的各種各樣的控件都在里面减牺,包括文本、按鈕存谎、頁面布局等拔疚,但是無法實(shí)現(xiàn),所以MainActivity.java中源代碼就是在其設(shè)置好的布局上進(jìn)行頁面效果的實(shí)現(xiàn)既荚。
一稚失、頁面布局代碼
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical">
- linearLayout? 是線性布局,從上到下恰聘,方向由orientation的方向確定句各。
- orientation="vertical"?是指縱向的排列
<!--文本框-->
<TextView
android:id="@+id/tv_name"
android:layout_width="match_parent"
android:layout_height="250dp"
android:background="#2F2E2F"
android:text="想抽到什么呢"
android:textColor="#FFF"
android:textSize="80px"
android:gravity="center"/>
- 注釋的快捷方法:ctrl+/
- TextView ? 是界面上半部分的設(shè)計(jì),依次是文本內(nèi)容憨琳、界面寬度诫钓、長度旬昭、背景顏色篙螟、初始文本內(nèi)容、文本顏色问拘、字號遍略、對齊方式
<Button
android:layout_width="match_parent"
android:layout_height="65dp"
android:background="#D65489"
android:layout_marginTop="100dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:text="開始抽獎"
android:textColor="#fff"
android:textSize="20dp"
android:onClick="start"/>
- 按鈕控件的設(shè)置惧所,由上到下依次是寬度、長度绪杏、背景顏色下愈、距離頁面上面和左右的距離、文本內(nèi)容蕾久、顏色势似、大小
- 最后一行是點(diǎn)擊方法,Alt+enter可在MainActivity.java中添加方法
二僧著、效果實(shí)現(xiàn)代碼
String[] names=new String[]{"泡芙","蛋糕","蘋果","橘子","西瓜","草莓","香蕉"};//候選名字
Timer timer;//定時(shí)器
//按鈕點(diǎn)擊方法
public void start(View view) {
//按鈕文本轉(zhuǎn)換
Button btn=(Button) view;
String title=btn.getText().toString();
if(title.equals("開始抽獎")){
btn.setText("暫停");
timer=new Timer();//定時(shí)器
timer.schedule(new TimerTask() {
@Override
public void run() {
produceOnePeople();
}
},0,80);//每隔一段時(shí)間執(zhí)行指定的任務(wù)
}else{
btn.setText("開始抽獎");
timer.cancel();
}//文本轉(zhuǎn)換
}
//隨機(jī)名字產(chǎn)生方法
public void produceOnePeople(){
//產(chǎn)生隨機(jī)數(shù)履因,并從數(shù)組中取出進(jìn)行顯示
Random random=new Random();
int index=Math.abs(random.nextInt())%names.length;//隨機(jī)數(shù),對所產(chǎn)生的數(shù)取絕對值
String name =names[index];//提取名字
TextView tv =findViewById(R.id.tv_name);
tv.setText(name);//顯示名字
}
}