aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/java/com/wireguard/android/ProfileActivity.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Major renaming and refactoring in activity and serviceSamuel Holland2017-08-131-69/+0
| | | | | | Apparently "configuration" is the proper term, not "profile". Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* ProfileActivity: Do menus correctlySamuel Holland2017-08-101-8/+0
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* Settings: Add empty activitySamuel Holland2017-08-091-1/+1
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* ProfileEdit: Add empty activity/fragmentSamuel Holland2017-08-091-0/+1
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* ProfileActivity: Do not use onClick for menusSamuel Holland2017-08-091-6/+2
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* ProfileActivity: Also remember editing stateSamuel Holland2017-08-091-3/+19
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* ProfileActivity: Replace fragments instead of hidingSamuel Holland2017-08-091-1/+2
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* ProfileActivity: Extract base class for fixing fragmentsSamuel Holland2017-08-091-54/+8
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* ProfileActivity: Refactor into clean layers of functionalitySamuel Holland2017-08-081-62/+65
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* ProfileActivity: Add two-pane master-detail layoutSamuel Holland2017-08-071-0/+4
| | | | | | | This is designed for tablets, but for testing purposes, it is currently enabled for all devices in landscape orientation. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* ProfileActivity: Make local variables finalSamuel Holland2017-08-071-2/+2
| | | | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* ProfileList: Load fragment programmaticallySamuel Holland2017-08-071-0/+6
| | | | | | This is necessary to replace it with the profile detail fragment later. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
* ProfileList: Convert to a fragmentSamuel Holland2017-08-041-0/+96
This is required for a future two-fragment tablet layout, and simplifies the code a bit since the profile detail (view/edit) will be implemented as fragments anyway. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>