0

Android初心者の皆さん、

一部のコンテンツ (テキストのみ) のみを表示するアプリケーションを開発しようとしています。これらのコンテンツの一部をお気に入りとしてマークできます。

お気に入りボタンをクリックすると、お気に入りのコンテンツを1つの.xmlファイルに表示したい。一度に 1 ページに 1 つのテキストを表示できますが、複数のテキストを連続して表示するにはどうすればよいですか。

これが.xmlのテンプレートです

<TextView
    android:id="@+id/string_fav1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="120dp"
    android:gravity="center"
    android:text="@string/string_deneme"
    android:textColor="@color/pinky_black"
    android:textSize="15sp"
    android:textStyle="italic"
    android:typeface="serif" />

<TextView
    android:id="@+id/string_fav2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/string_fav1"
    android:layout_marginTop="10dp"
    android:gravity="center"
    android:text="@string/string_deneme"
    android:textColor="@color/pinky_black"
    android:textSize="15sp"
    android:textStyle="italic"
    android:typeface="serif" />

<TextView
    android:id="@+id/string_fav3"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/string_fav2"
    android:layout_marginTop="10dp"
    android:gravity="center"
    android:text="@string/string_deneme"
    android:textColor="@color/pinky_black"
    android:textSize="15sp"
    android:textStyle="italic"
    android:typeface="serif" /> 

これらのアイテムは静的に表示されています。したがって、これらはデータベースのアイテムでなければなりません。

答えてくれてありがとう。十分に説明したことを願っています。

4

1 に答える 1