forked from Sapnethedreams/Sapne
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSapneCare.java
More file actions
41 lines (20 loc) · 763 Bytes
/
Copy pathSapneCare.java
File metadata and controls
41 lines (20 loc) · 763 Bytes
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
package ngo.sapne.intents.sapne;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import java.util.Locale;
public class SapneCare extends Fragment {
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.activity_sapne_care, container, false);
return view;
}
}