0
我需要將顏色存儲在sqllite數據庫中,並讓用戶選擇他們想要的字體顏色。
顏色將顯示在滾動視圖中,類似於顯示圖標選擇。 如何以這種方式向用戶顯示顏色?需要允許用戶從sqllite數據庫中選擇顏色
<LinearLayout
android:layout_width="200dp"
android:layout_height="50dp"
android:orientation="horizontal"
android:layout_marginRight="73dp"
android:layout_marginEnd="73dp"
android:layout_below="@+id/btnCreateAccount"
android:layout_alignRight="@+id/btnCreateAccount"
android:layout_alignEnd="@+id/btnCreateAccount">
<ImageView
android:layout_width="50sp"
android:layout_height="50sp"
android:src="@mipmap/color1"
android:id="@+id/imgView1"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/color2"
android:id="@+id/imgView2"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/color3"
android:id="@+id/imgView3"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/color4"
android:id="@+id/imgView4"/>
</LinearLayout>
我會認爲顏色會顯示爲圖像或圖標,選擇將被添加到數據庫中的用戶文件?
我不太清楚你在問什麼。您發佈的代碼似乎與您所描述的完全不同。 – nasch