- Apr 18 Thu 2019 09:50
-
Android--勞動部實體課程筆記分享(八)--實作用按鈕切換圖片練習ImageView的使用、程式中調用drawable內的圖片、App桌面icon設定
- Apr 17 Wed 2019 15:44
-
1080417英文日記--每日三句英文寫作練習(第31天)
I was keen to quit recently because I was fed up with working here.
There is nothing makes me feel happy at work because we had a overly critical boss.
There is nothing makes me feel happy at work because we had a overly critical boss.
- Apr 17 Wed 2019 11:32
-
Android--勞動部實體課程筆記分享(七)--Checkbox、RadioGroup、RadioButton實作練習
(一)商品和加購金額的計算頁面
1.可以輸入尺和筆的數量,還有勾選紙/圓規/筆記本,計算總共金額(尺:29元,筆31元,紙加購3份60元,圓規3支60元,筆記本3本60元),先做版面設計
- Apr 17 Wed 2019 11:26
-
Android--勞動部實體課程筆記分享(六)--MVC簡介、R檔說明、匯入jar檔、java sdk支援版本調整
●android的功能如果要運算或是有要寫必較複雜的函式,可以把class用java寫好在import進來,因為打開很慢測試也不方便
=>m(model):開發jar=>jar/doc
- Apr 17 Wed 2019 10:40
-
1080416英文日記--每日三句英文寫作練習(第30天)
Sometimes I really want to know why kids can never focus on doing their homework.
Every time I have to take a lot of time to persuade my son to focus.
Every time I have to take a lot of time to persuade my son to focus.
- Apr 15 Mon 2019 15:56
-
1080415英文日記--每日三句英文寫作練習(第29天)
We had a long and boring meeting this morning.
When the meeting come to an end , it was almost 1:00 pm.
When the meeting come to an end , it was almost 1:00 pm.
- Apr 15 Mon 2019 15:48
-
Android--勞動部實體課程筆記分享(五)--Intent、TextView、EditText、Button實作練習--複利和的計算
MainActitvity.java
public class MainActivity extends AppCompatActivity {
Button m1,m2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
m1=(Button) findViewById(R.id.m1);
m2=(Button) findViewById(R.id.m2);
}
public void ex3(View v){
Intent in=new Intent();
in.setClass(MainActivity.this,Ex3.class);
startActivity(in);
}
Ex3.java
public class Ex3 extends AppCompatActivity {
Button home2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_ex3);
home2=(Button)findViewById(R.id.home2);
}
public void home2(View v){
Intent in=new Intent();
in.setClass(Ex3.this,MainActivity.class);
startActivity(in);
}
}
●再新增一頁Ex3_1,可以回上一頁(Ex3),Ex3新增一按鈕可以跳到Ex3_1
Ex3.java
public class Ex3 extends AppCompatActivity {
Button home2,ex3_1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_ex3);
home2=(Button)findViewById(R.id.home2);
ex3_1=(Button)findViewById(R.id.ex3_1);
}
public void ex3_1(View v){
Intent in=new Intent();
in.setClass(Ex3.this,Ex3_1.class);
startActivity(in);
}
Ex3_1.java
public class Ex3_1 extends AppCompatActivity {
Button ex3;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_ex3_1);
ex3=(Button)findViewById(R.id.ex3);
}
public void ex3(View v){
Intent in=new Intent();
in.setClass(Ex3_1.this,Ex3.class);
startActivity(in);
}
}
- Apr 15 Mon 2019 15:40
-
Android--勞動部實體課程筆記分享(四)--Intent與ACTION_VIEW教學(開啟網頁、自動撥號、啟動相機、開啟地圖)
- Apr 15 Mon 2019 15:37
-
Android--勞動部實體課程筆記分享(三)-- activity切換實作
- Apr 14 Sun 2019 17:13
-
1080414英文日記--每日三句英文寫作練習(第28天)
I took a lot of time to prepare the Chinese question paper for my son yesterday.
Finally, my husband find a software that could produce all kinds of question paper and that really helped me saved my time.
Finally, my husband find a software that could produce all kinds of question paper and that really helped me saved my time.
- Apr 14 Sun 2019 12:01
-
[育兒]/[親子共讀]--寶寶童書推薦--不是箱子(安東尼特.波第斯/文圖),阿布拉出版
- Apr 13 Sat 2019 22:45
-
1080413英文日記--每日三句英文寫作練習(第27天)
After my son's taekwondo class, we went to Costco to buy the book "The Secret World of Arrietty" and we'd like to eat lunch at Costco.
However, we could not only not find the book but also waited for a long time for eating our lunch because there were a lot of people wanting to eat lunch at Costco.
However, we could not only not find the book but also waited for a long time for eating our lunch because there were a lot of people wanting to eat lunch at Costco.


