Yaaic/app/src/main/java/org/yaaic/activity/UserActivity.java

73 lines
1.9 KiB
Java

/*
Yaaic - Yet Another Android IRC Client
Copyright 2009-2013 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;
import org.yaaic.R;
import org.yaaic.adapter.UserActionListAdapter;
import org.yaaic.model.Extra;
import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.ListView;
import android.widget.TextView;
/**
* UserActivity
*
* @author Sebastian Kaspari <sebastian@yaaic.org>
*/
public class UserActivity extends ListActivity
{
private String nickname;
/**
* On create
*/
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.user);
setListAdapter(new UserActionListAdapter());
nickname = getIntent().getStringExtra(Extra.USER);
((TextView) findViewById(R.id.nickname)).setText(nickname);
}
/**
* On action selected
*/
@Override
protected void onListItemClick(ListView list, View view, int position, long id)
{
Intent intent = new Intent();
intent.putExtra(Extra.ACTION, (int) id);
intent.putExtra(Extra.USER, nickname);
setResult(RESULT_OK, intent);
finish();
}
}