-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathactivity_math_how_to.xml
27 lines (24 loc) · 1.01 KB
/
activity_math_how_to.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.brainfusion.eldarfin.brainfusion.MathHowToActivity"
android:background="@drawable/mathhowto1"
android:id="@+id/MathHowToLayout">
<ImageButton
android:layout_width="75dp"
android:layout_height="75dp"
android:id="@+id/rightButton"
android:src="@drawable/rightarrowanimation"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
<ImageButton
android:layout_width="75dp"
android:layout_height="75dp"
android:id="@+id/leftButton"
android:src="@drawable/leftarrowanimation"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</RelativeLayout>