2010-04-06 14:32:10 -04:00
|
|
|
/*
|
|
|
|
Yaaic - Yet Another Android IRC Client
|
|
|
|
|
|
|
|
Copyright 2009-2010 Sebastian Kaspari
|
|
|
|
|
|
|
|
This file is part of Yaaic.
|
|
|
|
|
|
|
|
Yaaic is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Yaaic is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.yaaic.activity;
|
|
|
|
|
2010-04-06 16:45:32 -04:00
|
|
|
import org.yaaic.R;
|
|
|
|
import org.yaaic.model.Extra;
|
|
|
|
|
|
|
|
import android.app.ListActivity;
|
2010-04-25 13:33:05 -04:00
|
|
|
import android.content.Intent;
|
2010-04-06 16:45:32 -04:00
|
|
|
import android.os.Bundle;
|
2010-04-25 13:33:05 -04:00
|
|
|
import android.view.View;
|
2010-04-06 16:45:32 -04:00
|
|
|
import android.view.Window;
|
2010-04-25 13:33:05 -04:00
|
|
|
import android.widget.AdapterView;
|
2010-04-06 16:45:32 -04:00
|
|
|
import android.widget.ArrayAdapter;
|
2010-04-25 13:33:05 -04:00
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
2010-04-06 14:32:10 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* User Activity - Shows a list of users in the current channel
|
|
|
|
*
|
|
|
|
* @author Sebastian Kaspari <sebastian@yaaic.org>
|
|
|
|
*/
|
2010-04-25 13:33:05 -04:00
|
|
|
public class UsersActivity extends ListActivity implements OnItemClickListener
|
2010-04-06 14:32:10 -04:00
|
|
|
{
|
2010-04-06 16:45:32 -04:00
|
|
|
/**
|
|
|
|
* On create
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState)
|
|
|
|
{
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
requestWindowFeature(Window.FEATURE_NO_TITLE);
|
|
|
|
|
|
|
|
setContentView(R.layout.users);
|
|
|
|
|
|
|
|
String[] users = getIntent().getExtras().getStringArray(Extra.USERS);
|
|
|
|
getListView().setAdapter(new ArrayAdapter<String>(this, R.layout.useritem, users));
|
2010-04-25 13:33:05 -04:00
|
|
|
getListView().setOnItemClickListener(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On user selected
|
|
|
|
*/
|
|
|
|
public void onItemClick(AdapterView<?> list, View item, int position, long id)
|
|
|
|
{
|
|
|
|
Intent intent = new Intent();
|
|
|
|
intent.putExtra(Extra.USER, (String) getListView().getAdapter().getItem(position));
|
|
|
|
setResult(RESULT_OK, intent);
|
|
|
|
finish();
|
2010-04-06 16:45:32 -04:00
|
|
|
}
|
2010-04-06 14:32:10 -04:00
|
|
|
}
|