Androidアプリでのリサイクラービューの操作
この例は、Androidアプリでのリサイクラービューの操作について示しています
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" android:id="@+id/rlMain" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="16dp" android:orientation="vertical"> <androidx.recyclerview.widget.RecyclerView android:id="@+id/recyclerView" android:layout_width="match_parent" android:layout_height="match_parent" /> </LinearLayout>
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますpackage app.com.sample; import android.os.Bundle; import androidx.appcompat.app.AppCompatActivity; import androidx.recyclerview.widget.DefaultItemAnimator; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import java.util.ArrayList; import java.util.List; public class MainActivity extends AppCompatActivity { private List<MovieModel> movieList = new ArrayList<>(); private MoviesAdapter mAdapter; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); RecyclerView recyclerView = findViewById(R.id.recyclerView); mAdapter = new MoviesAdapter(movieList); LinearLayoutManager mLayoutManager = new LinearLayoutManager(getApplicationContext()); recyclerView.setLayoutManager(mLayoutManager); recyclerView.setItemAnimator(new DefaultItemAnimator()); recyclerView.setAdapter(mAdapter); prepareMovieData(); } private void prepareMovieData() { MovieModel movie = new MovieModel("Mad Max: Fury Road", "Action & Adventure", "2015"); movieList.add(movie); movie = new MovieModel("Inside Out", "Animation, Kids & Family", "2015"); movieList.add(movie); movie = new MovieModel("Star Wars: Episode VII - The Force Awakens", "Action", "2015"); movieList.add(movie); movie = new MovieModel("Shaun the Sheep", "Animation", "2015"); movieList.add(movie); movie = new MovieModel("The Martian", "Science Fiction & Fantasy", "2015"); movieList.add(movie); movie = new MovieModel("Mission: Impossible Rogue Nation", "Action", "2015"); movieList.add(movie); movie = new MovieModel("Up", "Animation", "2009"); movieList.add(movie); movie = new MovieModel("Star Trek", "Science Fiction", "2009"); movieList.add(movie); movie = new MovieModel("The LEGO MovieModel", "Animation", "2014"); movieList.add(movie); movie = new MovieModel("Iron Man", "Action & Adventure", "2008"); movieList.add(movie); movie = new MovieModel("Aliens", "Science Fiction", "1986"); movieList.add(movie); movie = new MovieModel("Chicken Run", "Animation", "2000"); movieList.add(movie); movie = new MovieModel("Back to the Future", "Science Fiction", "1985"); movieList.add(movie); movie = new MovieModel("Raiders of the Lost Ark", "Action & Adventure", "1981"); movieList.add(movie); movie = new MovieModel("Goldfinger", "Action & Adventure", "1965"); movieList.add(movie); movie = new MovieModel("Guardians of the Galaxy", "Science Fiction & Fantasy", "2014"); movieList.add(movie); mAdapter.notifyDataSetChanged(); } }
ステップ4 −次のコードをsrc / MovieModel.java
に追加しますpackage app.com.sample; public class MovieModel { private String title, genre, year; public MovieModel() { } public MovieModel(String title, String genre, String year) { this.title = title; this.genre = genre; this.year = year; } public String getTitle() { return title; } public void setTitle(String name) { this.title = name; } public String getYear() { return year; } public void setYear(String year) { this.year = year; } public String getGenre() { return genre; } public void setGenre(String genre) { this.genre = genre; } }
ステップ5 −次のコードをres / layout/movies_list.xmlに追加します。
<?xml version="1.0" encoding="utf-8"?> <androidx.cardview.widget.CardView xmlns:android="https://schemas.android.com/apk/res/android" android:layout_width=" match_parent" android:layout_height="100dp" android:layout_margin="8dp"> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:padding="8dp"> <TextView android:id="@+id/title" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentStart="true" android:layout_toStartOf="@+id/year" android:textColor="#222222" android:textSize="16sp" android:textStyle="bold" /> <TextView android:id="@+id/year" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentEnd="true" android:textColor="#999999" /> <TextView android:id="@+id/genre" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" /> </RelativeLayout> </androidx.cardview.widget.CardView>
ステップ6 −次のコードをsrc / MoviesAdapter.java
に追加しますpackage app.com.sample; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.recyclerview.widget.RecyclerView; import java.util.List; public class MoviesAdapter extends RecyclerView.Adapter<MoviesAdapter.MyViewHolder> { private List<MovieModel> moviesList; class MyViewHolder extends RecyclerView.ViewHolder { TextView title, year, genre; MyViewHolder(View view) { super(view); title = view.findViewById(R.id.title); genre = view.findViewById(R.id.genre); year = view.findViewById(R.id.year); } } public MoviesAdapter(List<MovieModel> moviesList) { this.moviesList = moviesList; } @NonNull @Override public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { View itemView = LayoutInflater.from(parent.getContext()) .inflate(R.layout.movie_list, parent, false); return new MyViewHolder(itemView); } @Override public void onBindViewHolder(MyViewHolder holder, int position) { MovieModel movie = moviesList.get(position); holder.title.setText(movie.getTitle()); holder.genre.setText(movie.getGenre()); holder.year.setText(movie.getYear()); } @Override public int getItemCount() { return moviesList.size(); } }
ステップ7 −次のコードをandroidManifest.xmlに追加します
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="https://schemas.android.com/apk/res/android" package="app.com.sample"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
-
Android メッセージ アプリが動作しない問題を修正
人々が看板、絵、鳩、手紙、電報、はがきでコミュニケーションをとっていた時代がありました。これにはかなりの時間がかかり、メッセージを受信するまで非常に長い時間待たなければなりませんでした。テクノロジーの現代では、伝えられるすべての情報が、世界の反対側の人々に即座に伝達されます。 Android メッセージング アプリケーションは、リアルタイムで多用途です。しかし、Android メッセージング アプリが機能しない問題に直面した場合、これは非常に煩わしくイライラする可能性があります。本日、Android スマートフォンの既定のメッセージ アプリで、メッセージがダウンロードされていない、または送信さ
-
Twitch アプリが Android で動作しない問題を修正
Twitch は、ゲームプレイやその他のアクティビティをストリーミングするために、ゲーマーやクリエイターに提供される人気のライブ ストリーミング サービスです。 Twitch のクリエイターは、プラットフォーム上でコンテンツを共有しながら、ファン層や他の Twitch ユーザーと交流することもできます。あなたがTwitchストリーマーまたはユーザーの1人で、この質問を心に留めている場合:Twitchは現在ダウンしていますか?あなたは正しい場所にいます!この記事を最後まで読み続けて、Twitch アプリが機能しない問題を修正する方法を学びましょう。 Twitch アプリが Android で