2014-06-30 18:39:15 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
2014-07-02 14:13:25 +00:00
|
|
|
import android.app.ActionBar;
|
|
|
|
import android.app.ActionBar.Tab;
|
|
|
|
import android.app.ActionBar.TabListener;
|
|
|
|
import android.app.Fragment;
|
|
|
|
import android.app.FragmentTransaction;
|
|
|
|
import android.app.ListFragment;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.v13.app.FragmentPagerAdapter;
|
|
|
|
import android.support.v4.view.ViewPager;
|
2014-07-04 09:36:02 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
2014-07-02 14:13:25 +00:00
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
|
2014-06-30 18:39:15 +00:00
|
|
|
public class StartConversation extends XmppActivity {
|
|
|
|
|
2014-07-02 14:13:25 +00:00
|
|
|
private Tab mContactsTab;
|
|
|
|
private Tab mConferencesTab;
|
|
|
|
private ViewPager mViewPager;
|
|
|
|
private ListFragment mContactsListFragment = new ListFragment();
|
|
|
|
private ListFragment mConferenceListFragment = new ListFragment();
|
|
|
|
|
|
|
|
private TabListener mTabListener = new TabListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTabUnselected(Tab tab, FragmentTransaction ft) {
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTabSelected(Tab tab, FragmentTransaction ft) {
|
|
|
|
mViewPager.setCurrentItem(tab.getPosition());
|
2014-07-04 12:22:17 +00:00
|
|
|
invalidateOptionsMenu();
|
2014-07-02 14:13:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTabReselected(Tab tab, FragmentTransaction ft) {
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private ViewPager.SimpleOnPageChangeListener mOnPageChangeListener = new ViewPager.SimpleOnPageChangeListener() {
|
|
|
|
@Override
|
|
|
|
public void onPageSelected(int position) {
|
|
|
|
getActionBar().setSelectedNavigationItem(position);
|
2014-07-04 12:22:17 +00:00
|
|
|
invalidateOptionsMenu();
|
2014-07-02 14:13:25 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.activity_start_conversation);
|
|
|
|
mViewPager = (ViewPager) findViewById(R.id.start_conversation_view_pager);
|
|
|
|
ActionBar actionBar = getActionBar();
|
|
|
|
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
|
|
|
|
|
|
|
|
mContactsTab = actionBar.newTab().setText(R.string.contacts)
|
|
|
|
.setTabListener(mTabListener);
|
|
|
|
mConferencesTab = actionBar.newTab().setText(R.string.conferences)
|
|
|
|
.setTabListener(mTabListener);
|
|
|
|
actionBar.addTab(mContactsTab);
|
|
|
|
actionBar.addTab(mConferencesTab);
|
|
|
|
|
|
|
|
|
|
|
|
mViewPager.setOnPageChangeListener(mOnPageChangeListener);
|
|
|
|
mViewPager.setAdapter(new FragmentPagerAdapter(getFragmentManager()) {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCount() {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Fragment getItem(int position) {
|
|
|
|
if (position==0) {
|
|
|
|
return mContactsListFragment;
|
|
|
|
} else {
|
|
|
|
return mConferenceListFragment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
2014-07-04 09:36:02 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.start_conversation, menu);
|
2014-07-04 12:22:17 +00:00
|
|
|
MenuItem menuCreateContact = (MenuItem) menu.findItem(R.id.action_create_contact);
|
|
|
|
MenuItem menuCreateConference = (MenuItem) menu.findItem(R.id.action_create_conference);
|
|
|
|
if (getActionBar().getSelectedNavigationIndex() == 0) {
|
|
|
|
menuCreateConference.setVisible(false);
|
|
|
|
} else {
|
|
|
|
menuCreateContact.setVisible(false);
|
|
|
|
}
|
2014-07-04 09:36:02 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
2014-07-02 14:13:25 +00:00
|
|
|
|
2014-06-30 18:39:15 +00:00
|
|
|
@Override
|
|
|
|
void onBackendConnected() {
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|