blob: 2249a8a70ad1055572d901c49d2da7310a65a1d1 (
plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
|
package com.wireguard.android;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import com.wireguard.android.databinding.ProfileEditFragmentBinding;
import com.wireguard.config.Profile;
/**
* Fragment for editing a WireGuard profile.
*/
public class ProfileEditFragment extends ProfileFragment {
private ProfileEditFragmentBinding binding;
private Profile copy;
@Override
protected void onCachedProfileChanged(Profile cachedProfile) {
copy = cachedProfile != null ? cachedProfile.copy() : null;
if (binding != null)
binding.setProfile(copy);
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setHasOptionsMenu(true);
}
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.profile_edit, menu);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) {
binding = ProfileEditFragmentBinding.inflate(inflater, parent, false);
binding.setProfile(copy);
return binding.getRoot();
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.menu_action_save:
final ProfileServiceInterface service = getService();
if (service != null)
service.saveProfile(getProfile(), copy);
return true;
default:
return false;
}
}
}
|