2019-08-23 03:04:30 +02:00
|
|
|
package jp.juggler.subwaytooter
|
|
|
|
|
|
|
|
import android.content.Context
|
|
|
|
import android.os.Bundle
|
|
|
|
import android.view.View
|
|
|
|
import android.view.ViewGroup
|
|
|
|
import android.widget.TextView
|
|
|
|
import androidx.appcompat.app.AppCompatActivity
|
|
|
|
import com.woxthebox.draglistview.DragItem
|
|
|
|
import com.woxthebox.draglistview.DragItemAdapter
|
|
|
|
import com.woxthebox.draglistview.DragListView
|
|
|
|
import com.woxthebox.draglistview.swipe.ListSwipeHelper
|
|
|
|
import com.woxthebox.draglistview.swipe.ListSwipeItem
|
|
|
|
import jp.juggler.subwaytooter.table.UserRelation
|
|
|
|
import jp.juggler.util.LogCategory
|
2021-01-04 02:11:45 +01:00
|
|
|
import jp.juggler.util.attrColor
|
2022-12-27 03:54:52 +01:00
|
|
|
import jp.juggler.util.backPressed
|
2019-08-23 03:04:30 +02:00
|
|
|
|
|
|
|
class ActMutedPseudoAccount : AppCompatActivity() {
|
2021-05-22 00:03:16 +02:00
|
|
|
|
|
|
|
companion object {
|
|
|
|
private val log = LogCategory("ActMutedPseudoAccount")
|
|
|
|
}
|
|
|
|
|
|
|
|
internal lateinit var listView: DragListView
|
|
|
|
private lateinit var listAdapter: MyListAdapter
|
|
|
|
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
|
super.onCreate(savedInstanceState)
|
2022-09-10 23:09:26 +02:00
|
|
|
backPressed {
|
|
|
|
setResult(RESULT_OK)
|
|
|
|
finish()
|
|
|
|
}
|
2021-05-22 00:03:16 +02:00
|
|
|
App1.setActivityTheme(this)
|
|
|
|
initUI()
|
|
|
|
loadData()
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun initUI() {
|
|
|
|
setContentView(R.layout.act_word_list)
|
|
|
|
App1.initEdgeToEdge(this)
|
|
|
|
|
|
|
|
Styler.fixHorizontalPadding0(findViewById(R.id.llContent))
|
|
|
|
|
|
|
|
// リストのアダプター
|
|
|
|
listAdapter = MyListAdapter()
|
|
|
|
|
|
|
|
// ハンドル部分をドラッグで並べ替えできるRecyclerView
|
|
|
|
listView = findViewById(R.id.drag_list_view)
|
|
|
|
listView.setLayoutManager(androidx.recyclerview.widget.LinearLayoutManager(this))
|
|
|
|
listView.setAdapter(listAdapter, false)
|
|
|
|
|
|
|
|
listView.setCanDragHorizontally(true)
|
|
|
|
listView.isDragEnabled = false
|
|
|
|
listView.setCustomDragItem(MyDragItem(this, R.layout.lv_mute_app))
|
|
|
|
|
|
|
|
listView.recyclerView.isVerticalScrollBarEnabled = true
|
|
|
|
// listView.setDragListListener( new DragListView.DragListListenerAdapter() {
|
|
|
|
// @Override
|
|
|
|
// public void onItemDragStarted( int position ){
|
|
|
|
// // 操作中はリフレッシュ禁止
|
|
|
|
// // mRefreshLayout.setEnabled( false );
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// @Override
|
|
|
|
// public void onItemDragEnded( int fromPosition, int toPosition ){
|
|
|
|
// // 操作完了でリフレッシュ許可
|
|
|
|
// // mRefreshLayout.setEnabled( USE_SWIPE_REFRESH );
|
|
|
|
//
|
|
|
|
//// if( fromPosition != toPosition ){
|
|
|
|
//// // 並べ替えが発生した
|
|
|
|
//// }
|
|
|
|
// }
|
|
|
|
// } );
|
|
|
|
|
|
|
|
// リストを左右スワイプした
|
|
|
|
listView.setSwipeListener(object : ListSwipeHelper.OnSwipeListenerAdapter() {
|
|
|
|
|
|
|
|
override fun onItemSwipeStarted(item: ListSwipeItem?) {
|
|
|
|
// 操作中はリフレッシュ禁止
|
|
|
|
// mRefreshLayout.setEnabled( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onItemSwipeEnded(
|
|
|
|
item: ListSwipeItem?,
|
2021-06-20 15:12:25 +02:00
|
|
|
swipedDirection: ListSwipeItem.SwipeDirection?,
|
2021-05-22 00:03:16 +02:00
|
|
|
) {
|
|
|
|
// 操作完了でリフレッシュ許可
|
|
|
|
// mRefreshLayout.setEnabled( USE_SWIPE_REFRESH );
|
|
|
|
|
|
|
|
// 左にスワイプした(右端に青が見えた) なら要素を削除する
|
|
|
|
if (swipedDirection == ListSwipeItem.SwipeDirection.LEFT) {
|
|
|
|
val o = item?.tag
|
|
|
|
if (o is MyItem) {
|
|
|
|
UserRelation.deletePseudo(o.id)
|
|
|
|
listAdapter.removeItem(listAdapter.getPositionForItem(o))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun loadData() {
|
|
|
|
|
2021-06-20 15:12:25 +02:00
|
|
|
val tmpList = ArrayList<MyItem>()
|
2021-05-22 00:03:16 +02:00
|
|
|
try {
|
|
|
|
UserRelation.createCursorPseudo().use { cursor ->
|
2021-06-27 23:55:52 +02:00
|
|
|
val idxId = UserRelation.COL_ID.getIndex(cursor)
|
|
|
|
val idxName = UserRelation.COL_WHO_ID.getIndex(cursor)
|
2021-05-22 00:03:16 +02:00
|
|
|
while (cursor.moveToNext()) {
|
2021-06-20 15:12:25 +02:00
|
|
|
val id = cursor.getLong(idxId)
|
|
|
|
val name = cursor.getString(idxName)
|
2021-05-22 00:03:16 +02:00
|
|
|
val item = MyItem(id, name)
|
2021-06-20 15:12:25 +02:00
|
|
|
tmpList.add(item)
|
2021-05-22 00:03:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (ex: Throwable) {
|
2022-12-27 03:54:52 +01:00
|
|
|
log.e(ex, "loadData failed.")
|
2021-05-22 00:03:16 +02:00
|
|
|
}
|
|
|
|
|
2021-06-20 15:12:25 +02:00
|
|
|
listAdapter.itemList = tmpList
|
2021-05-22 00:03:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// リスト要素のデータ
|
|
|
|
internal class MyItem(val id: Long, val name: String)
|
|
|
|
|
|
|
|
// リスト要素のViewHolder
|
|
|
|
internal class MyViewHolder(viewRoot: View) :
|
|
|
|
DragItemAdapter.ViewHolder(viewRoot, R.id.ivDragHandle, false) {
|
|
|
|
|
|
|
|
val tvName: TextView
|
|
|
|
|
|
|
|
init {
|
|
|
|
|
|
|
|
tvName = viewRoot.findViewById(R.id.tvName)
|
|
|
|
|
|
|
|
// リスト要素のビューが ListSwipeItem だった場合、Swipe操作を制御できる
|
|
|
|
if (viewRoot is ListSwipeItem) {
|
|
|
|
viewRoot.setSwipeInStyle(ListSwipeItem.SwipeInStyle.SLIDE)
|
|
|
|
viewRoot.supportedSwipeDirection = ListSwipeItem.SwipeDirection.LEFT
|
|
|
|
}
|
|
|
|
} // View ID。 ここを押すとドラッグ操作をすぐに開始する
|
|
|
|
// 長押しでドラッグ開始するなら真
|
|
|
|
|
|
|
|
fun bind(item: MyItem) {
|
|
|
|
itemView.tag = item // itemView は親クラスのメンバ変数
|
|
|
|
tvName.text = item.name
|
|
|
|
}
|
|
|
|
|
|
|
|
// @Override
|
|
|
|
// public boolean onItemLongClicked( View view ){
|
|
|
|
// return false;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// @Override
|
|
|
|
// public void onItemClicked( View view ){
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
// ドラッグ操作中のデータ
|
|
|
|
private inner class MyDragItem(context: Context, layoutId: Int) :
|
|
|
|
DragItem(context, layoutId) {
|
|
|
|
|
|
|
|
override fun onBindDragView(clickedView: View, dragView: View) {
|
|
|
|
dragView.findViewById<TextView>(R.id.tvName).text =
|
|
|
|
clickedView.findViewById<TextView>(R.id.tvName).text
|
|
|
|
|
|
|
|
dragView.findViewById<View>(R.id.item_layout)
|
|
|
|
.setBackgroundColor(attrColor(R.attr.list_item_bg_pressed_dragged))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private inner class MyListAdapter :
|
|
|
|
DragItemAdapter<MyItem, MyViewHolder>() {
|
|
|
|
|
|
|
|
init {
|
|
|
|
setHasStableIds(true)
|
|
|
|
itemList = ArrayList()
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): MyViewHolder {
|
|
|
|
val view = layoutInflater.inflate(R.layout.lv_mute_app, parent, false)
|
|
|
|
return MyViewHolder(view)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onBindViewHolder(holder: MyViewHolder, position: Int) {
|
|
|
|
super.onBindViewHolder(holder, position)
|
|
|
|
holder.bind(itemList[position])
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun getUniqueItemId(position: Int): Long {
|
|
|
|
val item = mItemList[position] // mItemList は親クラスのメンバ変数
|
|
|
|
return item.id
|
|
|
|
}
|
|
|
|
}
|
2019-08-23 03:04:30 +02:00
|
|
|
}
|