/* * Copyright 2013 Niek Haarman * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.marshalchen.common.demoofui.listviewanimations.itemmanipulationexamples; import android.os.Bundle; import android.widget.TextView; import android.widget.Toast; import com.marshalchen.common.uimodule.listviewanimations.ArrayAdapter; import com.marshalchen.common.uimodule.listviewanimations.swinginadapters.prepared.AlphaInAnimationAdapter; import com.marshalchen.common.uimodule.listviewanimations.widget.DynamicListView; import com.marshalchen.common.demoofui.R; import com.marshalchen.common.demoofui.listviewanimations.ListAnimationListActivity; public class DragAndDropActivity extends ListAnimationListActivity { @Override protected void onCreate(final Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.list_anim_activity_draganddrop); DynamicListView listView = (DynamicListView) findViewById(R.id.activity_draganddrop_listview); listView.setDivider(null); TextView headerView =new TextView(this); headerView.setText("HEADER"); listView.addHeaderView(headerView); final ArrayAdapter<Integer> adapter = createListAdapter(); AlphaInAnimationAdapter animAdapter = new AlphaInAnimationAdapter(adapter); animAdapter.setInitialDelayMillis(300); animAdapter.setAbsListView(listView); listView.setAdapter(animAdapter); Toast.makeText(this, "Long press an item to start dragging", Toast.LENGTH_LONG).show(); listView.setOnItemMovedListener(new DynamicListView.OnItemMovedListener() { @Override public void onItemMoved(final int newPosition) { Toast.makeText(getApplicationContext(), adapter.getItem(newPosition) + " moved to position " + newPosition, Toast.LENGTH_SHORT).show(); } }); } }