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 pathCloud_Computing.java
More file actions
Latest commit
45 lines (38 loc) · 2.13 KB
/
Copy pathCloud_Computing.java
File metadata and controls
45 lines (38 loc) · 2.13 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
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.EditText;
importandroid.widget.TextView;
importcom.example.ruchita.technology.R;
publicclassCloud_ComputingextendsAppCompatActivity {
TextViewt1, t2;
@Override
protectedvoidonCreate(BundlesavedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cloud_computing);
t2 = (TextView) findViewById(R.id.textView2);
t1 = (TextView) findViewById(R.id.textView);
t1.setText("Cloud Computing");
t2.setText("Cloud computing is a computing-infrastructure and software model for enabling ubiquitous access to shared pools of configurable resources (such as computer networks, servers, storage, applications and services),which can be rapidly provisioned with minimal management effort, often over the Internet. Cloud computing allows users and enterprises with various computing capabilities to store and process data either in a privately-owned cloud, or on a third-party server located in a data centre - thus making data-accessing mechanisms more efficient and reliable. Cloud computing relies on sharing of resources to achieve coherence and economy of scale, similar to a utility.the practice of using a network of remote servers hosted on the Internet to store, manage, and process data, rather than a local server or a personal computer");
/*EditText inputtxt=(EditText) findViewById(R.id.editdata);
String typedText=inputtxt.getText().toString();
data.setText(typedText);*/
}
publicvoidclick(Viewview) {
switch (view.getId()) {
caseR.id.button8:
Intenti = newIntent(this, cloud_data.class);
startActivity(i);
break;
caseR.id.button12:
Intenti2 = newIntent(this, cloud_data.class);
startActivity(i2);
break;
}
}
}