This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.util.Log | |
| import com.android.volley.Response | |
| import com.android.volley.VolleyError | |
| import com.android.volley.toolbox.JsonObjectRequest | |
| import com.example.koheiando.twittervolleysample.TvsApplication | |
| import kotlinx.coroutines.suspendCancellableCoroutine | |
| import org.json.JSONObject | |
| import kotlin.coroutines.resume | |
| import kotlin.coroutines.resumeWithException |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface ListPositioner { | |
| val recyclerScrollKey: String | |
| fun loadListPosition() | |
| fun saveListPosition() | |
| fun resetListPosition() | |
| } |