前提・実現したいこと
Android開発勉強中の者です。Retrofitを使用した通信ができないため、質問させていただきます。具体的には、Retrofitを用いたinterfaceをどのように書けばよいかが分かりませんでした。
リクエストのレスポンスとして返されたnameとimgをそれぞれテキスト、画像としてRecyclerViewを用いて描画したいです。その際、リストの型をうまく書くことができません。
該当のソースコード
APIのsuspend関数の戻り値をどう書けばよいか分かりません。
JSONを基に作成したdataクラス
kotlin
1data class Pokemon( 2 var id: Int = 0, 3 var num: String? = null, 4 var name: String? = null, 5 var img: String? = null, 6 var type: List<String>? = null, 7 var height: String? = null, 8 var weight: String? = null, 9 var candy: String? = null, 10 var candy_count: Int = 0, 11 var egg: String? = null, 12 var spawn_chance: Double = 0.0, 13 var avg_spawns: Double = 0.0, 14 var spawn_time: String? = null, 15 var multipliers: List<Double>? = null, 16 var weaknesses: List<String>? = null, 17 var next_evolution: List<Evolution>? = null, 18 var prev_evolution: List<Evolution>? = null 19) 20 21data class Evolution( 22 var num: String? = null, 23 var name: String? = null 24)
MainActivity
kotlin
1class MainActivity : AppCompatActivity() { 2 private lateinit var recyclerView: RecyclerView 3 private lateinit var pokemonAdapter: PokemonAdapter 4 5 private lateinit var viewModel: MainViewModel 6 7 override fun onCreate(savedInstanceState: Bundle?) { 8 super.onCreate(savedInstanceState) 9 setContentView(R.layout.activity_main) 10 11 val repository = Repository() 12 val viewModelFactory = MainViewModelFactory(repository) 13 viewModel = ViewModelProvider(this, viewModelFactory).get(MainViewModel::class.java) 14 15 viewModel.getPokemon() 16 17 recyclerView = findViewById(R.id.recycler_view) 18 recyclerView.layoutManager = 19 LinearLayoutManager(this, LinearLayoutManager.VERTICAL, false) 20 21 viewModel.pokemons.observe(this, { response -> 22 if(response.isSuccessful){ 23 pokemonAdapter = PokemonAdapter(this, response) 24 recyclerView.adapter = pokemonAdapter 25 } 26 }) 27}
Adapterのコンストラクタ内のpokemonListをどのように書けばよいのか分かりませんでした。型を上記のinterfaceと同じResponse<List<Pokemon>>にした場合、リストの中身を参照できず、onBindViewHolder等で怒られてしまいます。
kotlin
1class PokemonAdapter(private var context: Context, private var pokemonList: List<Pokemon>) : 2 RecyclerView.Adapter<PokemonAdapter.PokemonHolder>() { 3 4 inner class PokemonHolder(itemView: View) : RecyclerView.ViewHolder(itemView) { 5 var pokeImage: ImageView 6 var pokeName: TextView 7 8 init { 9 pokeImage = itemView.findViewById(R.id.img_pokemon) 10 pokeName = itemView.findViewById(R.id.name_pokemon) 11 } 12 } 13 14 override fun onCreateViewHolder( 15 parent: ViewGroup, 16 viewType: Int 17 ): PokemonAdapter.PokemonHolder { 18 val view = LayoutInflater.from(parent.context).inflate(R.layout.row_pokemon, parent, false) 19 return PokemonHolder(view) 20 } 21 22 override fun onBindViewHolder(holder: PokemonAdapter.PokemonHolder, position: Int) { 23 holder.pokeName.text = pokemonList[position].name 24 Glide.with(context).load(pokemonList[position].img).into(holder.pokeImage) 25 } 26 27 override fun getItemCount(): Int { 28 return pokemonList.size 29 } 30 31 fun setPokemonList(newList: List<Pokemon>) { 32 pokemonList = newList 33 notifyDataSetChanged() 34 } 35 36}
試したこと
・interfaceで定義したsuspend関数の戻り値の型をResponseを使用せず、List<Pokemon>にしたが、その場合、実行時、JSONをパース出来ないと怒られてしまいます。
・新しくdata classを定義してみるが、上記と同様にAdaoterをかくことができなかった。
・Retrofitでは、Resoonseではなく、Callというものも使用できるようなので、Callを試したが、うまく書くことができなかった。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/04/01 06:47