Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xabber-android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
xabber-android
Commits
4f764827
Commit
4f764827
authored
Mar 17, 2015
by
Grigory Fedorov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ContactViewer and ContactViewerFragment moved from ui.preference package to ui.
parent
2e118ab1
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
7 deletions
+6
-7
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+1
-1
ChatViewer.java
app/src/main/java/com/xabber/android/ui/ChatViewer.java
+0
-1
ContactViewer.java
app/src/main/java/com/xabber/android/ui/ContactViewer.java
+3
-3
ContactViewerFragment.java
...ain/java/com/xabber/android/ui/ContactViewerFragment.java
+1
-1
ContextMenuHelper.java
.../java/com/xabber/android/ui/helper/ContextMenuHelper.java
+1
-1
No files found.
app/src/main/AndroidManifest.xml
View file @
4f764827
...
@@ -219,7 +219,7 @@
...
@@ -219,7 +219,7 @@
<activity
<activity
android:label=
"@string/contact_viewer"
android:label=
"@string/contact_viewer"
android:name=
"com.xabber.android.ui.
preferences.
ContactViewer"
android:name=
"com.xabber.android.ui.ContactViewer"
android:parentActivityName=
"com.xabber.android.ui.ContactList"
android:parentActivityName=
"com.xabber.android.ui.ContactList"
>
>
<!-- Parent activity meta-data to support 4.0 and lower -->
<!-- Parent activity meta-data to support 4.0 and lower -->
...
...
app/src/main/java/com/xabber/android/ui/ChatViewer.java
View file @
4f764827
...
@@ -58,7 +58,6 @@ import com.xabber.android.ui.dialog.ChatExportDialogFragment;
...
@@ -58,7 +58,6 @@ import com.xabber.android.ui.dialog.ChatExportDialogFragment;
import
com.xabber.android.ui.helper.ContactTitleActionBarInflater
;
import
com.xabber.android.ui.helper.ContactTitleActionBarInflater
;
import
com.xabber.android.ui.helper.ManagedActivity
;
import
com.xabber.android.ui.helper.ManagedActivity
;
import
com.xabber.android.ui.preferences.ChatEditor
;
import
com.xabber.android.ui.preferences.ChatEditor
;
import
com.xabber.android.ui.preferences.ContactViewer
;
import
com.xabber.androiddev.R
;
import
com.xabber.androiddev.R
;
import
java.util.Collection
;
import
java.util.Collection
;
...
...
app/src/main/java/com/xabber/android/ui/
preferences/
ContactViewer.java
→
app/src/main/java/com/xabber/android/ui/ContactViewer.java
View file @
4f764827
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
* You should have received a copy of the GNU General Public License,
* You should have received a copy of the GNU General Public License,
* along with this program. If not, see http://www.gnu.org/licenses/.
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
*/
package
com
.
xabber
.
android
.
ui
.
preferences
;
package
com
.
xabber
.
android
.
ui
;
import
android.content.Context
;
import
android.content.Context
;
import
android.content.Intent
;
import
android.content.Intent
;
...
@@ -54,8 +54,8 @@ import java.util.Map;
...
@@ -54,8 +54,8 @@ import java.util.Map;
public
class
ContactViewer
extends
ManagedActivity
implements
public
class
ContactViewer
extends
ManagedActivity
implements
OnVCardListener
,
OnContactChangedListener
,
OnAccountChangedListener
{
OnVCardListener
,
OnContactChangedListener
,
OnAccountChangedListener
{
private
static
final
String
SAVED_VCARD
=
"com.xabber.android.ui.
preferences.
ContactViewer.SAVED_VCARD"
;
private
static
final
String
SAVED_VCARD
=
"com.xabber.android.ui.ContactViewer.SAVED_VCARD"
;
private
static
final
String
SAVED_VCARD_ERROR
=
"com.xabber.android.ui.
preferences.
ContactViewer.SAVED_VCARD_ERROR"
;
private
static
final
String
SAVED_VCARD_ERROR
=
"com.xabber.android.ui.ContactViewer.SAVED_VCARD_ERROR"
;
private
String
account
;
private
String
account
;
private
String
bareAddress
;
private
String
bareAddress
;
...
...
app/src/main/java/com/xabber/android/ui/
preferences/
ContactViewerFragment.java
→
app/src/main/java/com/xabber/android/ui/ContactViewerFragment.java
View file @
4f764827
package
com
.
xabber
.
android
.
ui
.
preferences
;
package
com
.
xabber
.
android
.
ui
;
import
android.app.Activity
;
import
android.app.Activity
;
import
android.app.Fragment
;
import
android.app.Fragment
;
...
...
app/src/main/java/com/xabber/android/ui/helper/ContextMenuHelper.java
View file @
4f764827
...
@@ -44,7 +44,7 @@ import com.xabber.android.ui.dialog.GroupDeleteDialogFragment;
...
@@ -44,7 +44,7 @@ import com.xabber.android.ui.dialog.GroupDeleteDialogFragment;
import
com.xabber.android.ui.dialog.GroupRenameDialogFragment
;
import
com.xabber.android.ui.dialog.GroupRenameDialogFragment
;
import
com.xabber.android.ui.dialog.MUCDeleteDialogFragment
;
import
com.xabber.android.ui.dialog.MUCDeleteDialogFragment
;
import
com.xabber.android.ui.preferences.AccountEditor
;
import
com.xabber.android.ui.preferences.AccountEditor
;
import
com.xabber.android.ui.
preferences.
ContactViewer
;
import
com.xabber.android.ui.ContactViewer
;
import
com.xabber.androiddev.R
;
import
com.xabber.androiddev.R
;
/**
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment