0
嗨Android的小白這裏多個文本,顯示從數據庫
我想開發一個應用程序,只(純文本)顯示一些內容,你可以標記爲最喜歡的一些內容。
當我點擊收藏按鈕時,我想在一個.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" />
這些項目已顯示在靜態的方式.XML的模板。所以這些必須是來自數據庫的項目。
謝謝你的回答。我希望我解釋得很好。