mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-09 22:00:39 +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;
|
package org.eehouse.android.xw4.loc;
|
||||||
|
|
||||||
import android.app.ListActivity;
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.view.Menu;
|
import android.view.Menu;
|
||||||
|
|
||||||
public class LocActivity extends ListActivity {
|
import org.eehouse.android.xw4.XWListActivity;
|
||||||
|
|
||||||
|
public class LocActivity extends XWListActivity {
|
||||||
|
|
||||||
private LocDelegate m_dlgt;
|
private LocDelegate m_dlgt;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate( Bundle savedInstanceState )
|
protected void onCreate( Bundle savedInstanceState )
|
||||||
{
|
{
|
||||||
super.onCreate( savedInstanceState );
|
|
||||||
m_dlgt = new LocDelegate( this, savedInstanceState );
|
m_dlgt = new LocDelegate( this, savedInstanceState );
|
||||||
|
super.onCreate( savedInstanceState, m_dlgt );
|
||||||
} // onCreate
|
} // onCreate
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue