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
e589bc8d
Commit
e589bc8d
authored
Dec 26, 2014
by
Grigory Fedorov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Old app bar imitation removed from ContactList layout and activity.
parent
0375cb0a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
270 deletions
+45
-270
ContactList.java
app/src/main/java/com/xabber/android/ui/ContactList.java
+45
-157
contact_list.xml
app/src/main/res/layout/contact_list.xml
+0
-113
No files found.
app/src/main/java/com/xabber/android/ui/ContactList.java
View file @
e589bc8d
...
...
@@ -14,19 +14,13 @@
*/
package
com
.
xabber
.
android
.
ui
;
import
java.util.ArrayList
;
import
java.util.Collection
;
import
android.app.Dialog
;
import
android.app.ProgressDialog
;
import
android.content.Context
;
import
android.content.DialogInterface
;
import
android.content.DialogInterface.OnCancelListener
;
import
android.content.Intent
;
import
android.content.res.ColorStateList
;
import
android.content.res.TypedArray
;
import
android.graphics.Bitmap
;
import
android.graphics.drawable.Drawable
;
import
android.net.Uri
;
import
android.os.Bundle
;
import
android.os.Handler
;
...
...
@@ -37,11 +31,7 @@ import android.view.KeyEvent;
import
android.view.Menu
;
import
android.view.MenuItem
;
import
android.view.View
;
import
android.view.View.OnLongClickListener
;
import
android.view.inputmethod.InputMethodManager
;
import
android.widget.ImageView
;
import
android.widget.LinearLayout
;
import
android.widget.TextView
;
import
android.widget.Toast
;
import
com.xabber.android.data.ActivityManager
;
...
...
@@ -49,8 +39,6 @@ import com.xabber.android.data.Application;
import
com.xabber.android.data.NetworkException
;
import
com.xabber.android.data.SettingsManager
;
import
com.xabber.android.data.account.AccountManager
;
import
com.xabber.android.data.account.OnAccountChangedListener
;
import
com.xabber.android.data.account.StatusMode
;
import
com.xabber.android.data.entity.BaseEntity
;
import
com.xabber.android.data.extension.avatar.AvatarManager
;
import
com.xabber.android.data.extension.muc.MUCManager
;
...
...
@@ -62,26 +50,25 @@ import com.xabber.android.data.roster.AbstractContact;
import
com.xabber.android.data.roster.RosterContact
;
import
com.xabber.android.data.roster.RosterManager
;
import
com.xabber.android.ui.ContactListFragment.OnContactClickListener
;
import
com.xabber.android.ui.adapter.AccountToggleAdapter
;
import
com.xabber.android.ui.dialog.AccountChooseDialogFragment
;
import
com.xabber.android.ui.dialog.AccountChooseDialogFragment.OnChoosedListener
;
import
com.xabber.android.ui.dialog.ContactIntegrationDialogFragment
;
import
com.xabber.android.ui.dialog.StartAtBootDialogFragment
;
import
com.xabber.android.ui.helper.ContextMenuHelper
;
import
com.xabber.android.ui.helper.ManagedActivity
;
import
com.xabber.androiddev.R
;
import
com.xabber.xmpp.address.Jid
;
import
com.xabber.xmpp.uri.XMPPUri
;
import
java.util.ArrayList
;
import
java.util.Collection
;
/**
* Main application activity.
*
* @author alexander.ivanov
*
*/
public
class
ContactList
extends
ManagedActivity
implements
OnAccountChangedListener
,
View
.
OnClickListener
,
OnLongClickListener
,
OnChoosedListener
,
OnContactClickListener
{
public
class
ContactList
extends
ManagedActivity
implements
OnChoosedListener
,
OnContactClickListener
{
/**
* Select contact to be invited to the room was requested.
...
...
@@ -106,11 +93,6 @@ public class ContactList extends ManagedActivity implements
private
static
final
String
CONTACT_LIST_TAG
=
"CONTACT_LIST"
;
/**
* Adapter for account list.
*/
private
AccountToggleAdapter
accountToggleAdapter
;
/**
* Current action.
*/
...
...
@@ -121,11 +103,6 @@ public class ContactList extends ManagedActivity implements
*/
private
String
sendText
;
/**
* Title view.
*/
private
View
titleView
;
@Override
public
void
onCreate
(
Bundle
savedInstanceState
)
{
if
(
Intent
.
ACTION_VIEW
.
equals
(
getIntent
().
getAction
())
...
...
@@ -139,7 +116,6 @@ public class ContactList extends ManagedActivity implements
return
;
setContentView
(
R
.
layout
.
contact_list
);
titleView
=
findViewById
(
android
.
R
.
id
.
title
);
FragmentTransaction
fragmentTransaction
=
getSupportFragmentManager
()
.
beginTransaction
();
...
...
@@ -147,28 +123,6 @@ public class ContactList extends ManagedActivity implements
CONTACT_LIST_TAG
);
fragmentTransaction
.
commit
();
accountToggleAdapter
=
new
AccountToggleAdapter
(
this
,
this
,
(
LinearLayout
)
findViewById
(
R
.
id
.
account_list
));
View
commonStatusText
=
findViewById
(
R
.
id
.
common_status_text
);
View
commonStatusMode
=
findViewById
(
R
.
id
.
common_status_mode
);
TypedArray
typedArray
=
obtainStyledAttributes
(
R
.
styleable
.
ContactList
);
ColorStateList
textColorPrimary
=
typedArray
.
getColorStateList
(
R
.
styleable
.
ContactList_textColorPrimaryNoSelected
);
Drawable
titleMainBackground
=
typedArray
.
getDrawable
(
R
.
styleable
.
ContactList_titleMainBackground
);
typedArray
.
recycle
();
((
TextView
)
commonStatusText
).
setTextColor
(
textColorPrimary
);
titleView
.
setBackgroundDrawable
(
titleMainBackground
);
commonStatusText
.
setOnLongClickListener
(
this
);
commonStatusMode
.
setOnClickListener
(
this
);
commonStatusText
.
setOnClickListener
(
this
);
titleView
.
setOnClickListener
(
this
);
findViewById
(
R
.
id
.
back_button
).
setOnClickListener
(
this
);
if
(
savedInstanceState
!=
null
)
{
sendText
=
savedInstanceState
.
getString
(
SAVED_SEND_TEXT
);
action
=
savedInstanceState
.
getString
(
SAVED_ACTION
);
...
...
@@ -254,18 +208,16 @@ public class ContactList extends ManagedActivity implements
@Override
protected
void
onResume
()
{
super
.
onResume
();
updateStatusBar
();
rebuildAccountToggler
();
Application
.
getInstance
().
addUIListener
(
OnAccountChangedListener
.
class
,
this
);
if
(
ContactList
.
ACTION_ROOM_INVITE
.
equals
(
action
)
||
Intent
.
ACTION_SEND
.
equals
(
action
)
||
Intent
.
ACTION_CREATE_SHORTCUT
.
equals
(
action
))
{
switch
(
action
)
{
case
ContactList
.
ACTION_ROOM_INVITE
:
case
Intent
.
ACTION_SEND
:
case
Intent
.
ACTION_CREATE_SHORTCUT
:
if
(
Intent
.
ACTION_SEND
.
equals
(
action
))
sendText
=
getIntent
().
getStringExtra
(
Intent
.
EXTRA_TEXT
);
Toast
.
makeText
(
this
,
getString
(
R
.
string
.
select_contact
),
Toast
.
LENGTH_LONG
).
show
();
}
else
if
(
Intent
.
ACTION_VIEW
.
equals
(
action
))
{
break
;
case
Intent
.
ACTION_VIEW
:
{
action
=
null
;
Uri
data
=
getIntent
().
getData
();
if
(
data
!=
null
&&
"xmpp"
.
equals
(
data
.
getScheme
()))
{
...
...
@@ -283,7 +235,9 @@ public class ContactList extends ManagedActivity implements
openChat
(
xmppUri
.
getPath
(),
text
);
}
}
}
else
if
(
Intent
.
ACTION_SENDTO
.
equals
(
action
))
{
break
;
}
case
Intent
.
ACTION_SENDTO
:
{
action
=
null
;
Uri
data
=
getIntent
().
getData
();
if
(
data
!=
null
)
{
...
...
@@ -291,6 +245,8 @@ public class ContactList extends ManagedActivity implements
if
(
path
!=
null
&&
path
.
startsWith
(
"/"
))
openChat
(
path
.
substring
(
1
),
null
);
}
break
;
}
}
if
(
Application
.
getInstance
().
doNotify
())
{
if
(
SettingsManager
.
bootCount
()
>
2
...
...
@@ -312,8 +268,6 @@ public class ContactList extends ManagedActivity implements
@Override
protected
void
onPause
()
{
super
.
onPause
();
Application
.
getInstance
().
removeUIListener
(
OnAccountChangedListener
.
class
,
this
);
}
@Override
...
...
@@ -398,9 +352,6 @@ public class ContactList extends ManagedActivity implements
public
void
onCreateContextMenu
(
ContextMenu
menu
,
View
view
,
ContextMenuInfo
menuInfo
)
{
super
.
onCreateContextMenu
(
menu
,
view
,
menuInfo
);
ContextMenuHelper
.
createAccountContextMenu
(
this
,
getContactListFragment
().
getAdapter
(),
accountToggleAdapter
.
getItemForView
(
view
),
menu
);
}
@Override
...
...
@@ -434,44 +385,6 @@ public class ContactList extends ManagedActivity implements
return
super
.
onKeyDown
(
keyCode
,
event
);
}
@Override
public
void
onClick
(
View
view
)
{
switch
(
view
.
getId
())
{
case
R
.
id
.
common_status_mode
:
startActivity
(
StatusEditor
.
createIntent
(
this
));
break
;
case
R
.
id
.
back_button
:
// Xabber icon button
case
R
.
id
.
common_status_text
:
case
android
.
R
.
id
.
title
:
getContactListFragment
().
scrollUp
();
break
;
default
:
String
account
=
accountToggleAdapter
.
getItemForView
(
view
);
if
(
account
==
null
)
// Check for tap on account in the title
break
;
if
(!
SettingsManager
.
contactsShowAccounts
())
{
if
(
AccountManager
.
getInstance
().
getAccounts
().
size
()
<
2
)
getContactListFragment
().
scrollUp
();
else
{
getContactListFragment
().
setSelectedAccount
(
account
);
rebuildAccountToggler
();
}
}
else
getContactListFragment
().
scrollTo
(
account
);
break
;
}
}
@Override
public
boolean
onLongClick
(
View
view
)
{
switch
(
view
.
getId
())
{
case
R
.
id
.
common_status_text
:
startActivity
(
StatusEditor
.
createIntent
(
this
));
return
true
;
}
return
false
;
}
@Override
public
void
onContactClick
(
AbstractContact
abstractContact
)
{
if
(
ACTION_ROOM_INVITE
.
equals
(
action
))
{
...
...
@@ -520,36 +433,11 @@ public class ContactList extends ManagedActivity implements
}
}
@Override
public
void
onAccountsChanged
(
Collection
<
String
>
accounts
)
{
accountToggleAdapter
.
onChange
();
}
@Override
public
void
onChoosed
(
String
account
,
String
user
,
String
text
)
{
openChat
(
new
BaseEntity
(
account
,
user
),
text
);
}
private
void
updateStatusBar
()
{
String
statusText
=
SettingsManager
.
statusText
();
StatusMode
statusMode
=
SettingsManager
.
statusMode
();
if
(
""
.
equals
(
statusText
))
statusText
=
getString
(
statusMode
.
getStringID
());
((
TextView
)
findViewById
(
R
.
id
.
common_status_text
)).
setText
(
statusText
);
((
ImageView
)
findViewById
(
R
.
id
.
common_status_mode
))
.
setImageLevel
(
statusMode
.
getStatusLevel
());
}
private
void
rebuildAccountToggler
()
{
updateStatusBar
();
accountToggleAdapter
.
rebuild
();
if
(
SettingsManager
.
contactsShowPanel
()
&&
accountToggleAdapter
.
getCount
()
>
0
)
titleView
.
setVisibility
(
View
.
VISIBLE
);
else
titleView
.
setVisibility
(
View
.
GONE
);
}
/**
* Show search dialog.
*/
...
...
app/src/main/res/layout/contact_list.xml
View file @
e589bc8d
...
...
@@ -14,122 +14,9 @@
along with this program. If not, see http://www.gnu.org/licenses/.
-->
<RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
>
<RelativeLayout
android:id=
"@android:id/title"
android:layout_width=
"match_parent"
android:layout_height=
"@dimen/title_height"
android:layout_alignParentTop=
"true"
android:background=
"@drawable/title_main_background_dark"
>
<ImageButton
android:id=
"@+id/back_button"
android:layout_width=
"wrap_content"
android:layout_height=
"match_parent"
android:layout_alignParentLeft=
"true"
android:background=
"@drawable/title_logo"
tools:ignore=
"ContentDescription"
/>
<LinearLayout
android:layout_width=
"wrap_content"
android:layout_height=
"match_parent"
android:layout_alignParentRight=
"true"
android:layout_marginRight=
"@dimen/contact_list_status_mode_width"
android:layout_toRightOf=
"@id/back_button"
android:orientation=
"horizontal"
>
<HorizontalScrollView
android:id=
"@+id/account_bar"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginRight=
"72dip"
>
<LinearLayout
android:id=
"@+id/account_list"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:orientation=
"horizontal"
>
<!--
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/account_bg"
android:layout_width="42dip"
android:layout_height="44dip"
android:background="@drawable/account_bg">
<ImageView
android:id="@+id/avatar"
android:layout_width="32dip"
android:layout_height="32dip"
android:layout_marginTop="4dip"
android:layout_marginLeft="4dip"
android:src="@drawable/avatar_account_1"
/>
<ImageView
android:id="@+id/status_mode"
android:layout_width="42dip"
android:layout_height="44dip"
android:src="@drawable/ic_status_account"
android:background="@drawable/ic_status_connection_account"
/>
</RelativeLayout>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/account_bg"
android:layout_width="42dip"
android:layout_height="44dip"
android:background="@drawable/account_bg">
<ImageView
android:id="@+id/avatar"
android:layout_width="32dip"
android:layout_height="32dip"
android:layout_marginTop="4dip"
android:layout_marginLeft="4dip"
android:src="@drawable/avatar_account_1"
/>
<ImageView
android:id="@+id/status_mode"
android:layout_width="42dip"
android:layout_height="44dip"
android:src="@drawable/ic_status_account"
android:background="@drawable/ic_status_connection_account"
/>
</RelativeLayout>
-->
</LinearLayout>
</HorizontalScrollView>
<TextView
android:id=
"@+id/common_status_text"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:layout_gravity=
"left"
android:layout_marginLeft=
"-72dip"
android:gravity=
"left|center_vertical"
android:padding=
"2dip"
android:singleLine=
"true"
android:text=
"online"
android:textColor=
"?android:attr/textColorPrimary"
/>
</LinearLayout>
<ImageButton
android:id=
"@+id/common_status_mode"
android:layout_width=
"wrap_content"
android:layout_height=
"match_parent"
android:layout_alignParentRight=
"true"
android:background=
"@drawable/btn_status_mode"
android:paddingLeft=
"@dimen/active_chat_padding_right"
android:paddingRight=
"@dimen/active_chat_padding_right"
android:src=
"@drawable/ic_status"
/>
</RelativeLayout>
<RelativeLayout
android:id=
"@+id/container"
android:layout_width=
"match_parent"
...
...
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