16 lines
547 B
XML
16 lines
547 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="bottom|right"
|
||
|
android:layout_marginRight="10dp"
|
||
|
android:layout_marginBottom="10dp"
|
||
|
android:background="#CFFF" >
|
||
|
|
||
|
<ImageButton
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="10dp"
|
||
|
android:src="@drawable/ic_rating_good" />
|
||
|
|
||
|
</FrameLayout>
|