cart - Custom basket icon with count for android application -
i developing sample ordering application. want show basket icon added item count. whenever user add item cart, count in basket icon should increment.
i want show image in bottom of application screen.
use framelayout
<framelayout android:layout_width="wrap_content" android:layout_height="wrap_content"> <imageview android:id="@+id/counter" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center" android:src="@drawable/basket" android:drawablepadding="@dimen/spacing_small" /> <textview android:id="@+id/counter_value" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="1" android:gravity="center" /> </framelayout>
text colour of textview should match background. use java(activity) increment counter value.
Comments
Post a Comment