Project

General

Profile

Download (1.3 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / tutorial.xml @ eb49fa90

1 af88bf2e Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:layout_width="match_parent"
4
    android:layout_height="match_parent"
5
    android:layout_marginLeft="0dp"
6
    android:layout_marginRight="0dp"
7
    android:background="@android:color/transparent"
8
    android:orientation="vertical" >
9
10
    <WebView
11 2971588c Leszek Koltunski
        android:id="@+id/tutorialVideoView"
12 af88bf2e Leszek Koltunski
        android:layout_width="match_parent"
13
        android:layout_height="0dp"
14
        android:layout_weight="1"/>
15
16 eb49fa90 Leszek Koltunski
    <RelativeLayout
17 2971588c Leszek Koltunski
        android:id="@+id/tutorialLowerPart"
18 af88bf2e Leszek Koltunski
        android:layout_width="match_parent"
19
        android:layout_height="0dp"
20 eb49fa90 Leszek Koltunski
        android:layout_weight="1.2">
21 af88bf2e Leszek Koltunski
22 eaf87d1d Leszek Koltunski
        <org.distorted.tutorials.TutorialSurfaceView
23 af88bf2e Leszek Koltunski
           android:id="@+id/tutorialSurfaceView"
24 eb49fa90 Leszek Koltunski
           android:layout_width="match_parent"
25
           android:layout_height="match_parent"
26
           android:layout_alignParentStart="true"/>
27 af88bf2e Leszek Koltunski
28
        <LinearLayout
29 2971588c Leszek Koltunski
           android:id="@+id/tutorialRightBar"
30 eb49fa90 Leszek Koltunski
           android:layout_alignParentRight="true"
31 344f290c Leszek Koltunski
           android:layout_width="0dp"
32 af88bf2e Leszek Koltunski
           android:layout_height="match_parent"
33
           android:orientation="vertical"
34
           android:background="@android:color/transparent">
35 eb49fa90 Leszek Koltunski
        </LinearLayout>
36 344f290c Leszek Koltunski
37 eb49fa90 Leszek Koltunski
    </RelativeLayout>
38
</LinearLayout>