kikura
kikura

Reputation: 195

How to call back live wallpaper preview layout

In livewallpaper it has two button setting and set . When I click button setting it will call preference screen . I want to come back to livewallpaper preview screen when I click any item in preference screen . How can I do it . Thanks in advance !

Upvotes: 0

Views: 454

Answers (1)

mkso
mkso

Reputation: 3188

If you are referencing to CubeLiveWallpaper example from sample android code, add following code to CubeWallpaper2Settings.java

@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
    finish();
}

Upvotes: 1

Related Questions