mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-05 20:45:49 +01:00
derive from XWListActivity
This commit is contained in:
parent
750393a5e6
commit
c44a676808
1 changed files with 4 additions and 3 deletions
|
@ -19,19 +19,20 @@
|
|||
|
||||
package org.eehouse.android.xw4.loc;
|
||||
|
||||
import android.app.ListActivity;
|
||||
import android.os.Bundle;
|
||||
import android.view.Menu;
|
||||
|
||||
public class LocActivity extends ListActivity {
|
||||
import org.eehouse.android.xw4.XWListActivity;
|
||||
|
||||
public class LocActivity extends XWListActivity {
|
||||
|
||||
private LocDelegate m_dlgt;
|
||||
|
||||
@Override
|
||||
protected void onCreate( Bundle savedInstanceState )
|
||||
{
|
||||
super.onCreate( savedInstanceState );
|
||||
m_dlgt = new LocDelegate( this, savedInstanceState );
|
||||
super.onCreate( savedInstanceState, m_dlgt );
|
||||
} // onCreate
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue