Project

General

Profile

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

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

1
<?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
        android:id="@+id/tutorialVideoView"
12
        android:layout_width="match_parent"
13
        android:layout_height="0dp"
14
        android:layout_weight="1"/>
15

    
16
    <LinearLayout
17
        android:id="@+id/tutorialLowerPart"
18
        android:layout_width="match_parent"
19
        android:layout_height="0dp"
20
        android:layout_weight="1.2"
21
        android:orientation="horizontal"
22
        android:background="@android:color/transparent">
23

    
24
        <org.distorted.tutorials.TutorialSurfaceView
25
           android:id="@+id/tutorialSurfaceView"
26
           android:layout_width="0dp"
27
           android:layout_height="match_parent"/>
28

    
29
        <LinearLayout
30
           android:id="@+id/tutorialRightBar"
31
           android:layout_width="0dp"
32
           android:layout_height="match_parent"
33

    
34
           android:orientation="vertical"
35
           android:background="@android:color/transparent">
36

    
37

    
38
        </LinearLayout>
39
    </LinearLayout>
40
</LinearLayout>
(24-24/26)