Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeb_Technology.java
More file actions
Latest commit
46 lines (37 loc) · 1.99 KB
/
Copy pathWeb_Technology.java
File metadata and controls
46 lines (37 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
packagecom.example.ruchita.technology;
/**
* Created by Ruchita on 10/13/2017.
*/
importandroid.content.Intent;
importandroid.support.v7.app.AppCompatActivity;
importandroid.os.Bundle;
importandroid.view.View;
importandroid.widget.TextView;
importcom.example.ruchita.technology.R;
importorg.w3c.dom.Text;
publicclassWeb_TechnologyextendsAppCompatActivity {
TextViewt1, t2;
@Override
protectedvoidonCreate(BundlesavedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_web_technology);
t1 = (TextView) findViewById(R.id.textView7);
t2 = (TextView) findViewById(R.id.textView6);
t2.setText("Web Technology");
t1.setText("Web development is a broad term for the work involved in developing a web site for the Internet (World Wide Web) or an intranet (a private network). Web development can range from developing the simplest static single page of plain text to the most complex web-based internet applications (or just 'web apps') electronic businesses, and social network services. A more comprehensive list of tasks to which web development commonly refers, may include web engineering, web design, web content development, client liaison, client-side/server-side scripting, web server and network security configuration, and e-commerce development. Among web professionals, \"web development\" usually refers to the main non-design aspects of building web sites: writing markup and coding.");
}
publicvoidclick(Viewview) {
switch (view.getId()) {
caseR.id.button11:
Intenti1 = newIntent(this, web_data.class);
startActivity(i1);
break;
caseR.id.button16:
Intenti2 = newIntent(this, web_data.class);
startActivity(i2);
break;
//Intent i=new Intent(this,web_data.class);
//startActivity(i);
}
}
}