Project

General

Profile

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

magiccube / src / main / res / layout / tutorial.xml @ 0a9adc31

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 0a9adc31 leszek
    android:background="?lightC"
8 af88bf2e Leszek Koltunski
    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 0a9adc31 leszek
        android:layout_weight="1"
15
        android:background="?lightC"/>
16 af88bf2e Leszek Koltunski
17 eb49fa90 Leszek Koltunski
    <RelativeLayout
18 2971588c Leszek Koltunski
        android:id="@+id/tutorialLowerPart"
19 af88bf2e Leszek Koltunski
        android:layout_width="match_parent"
20
        android:layout_height="0dp"
21 eb49fa90 Leszek Koltunski
        android:layout_weight="1.2">
22 af88bf2e Leszek Koltunski
23 eaf87d1d Leszek Koltunski
        <org.distorted.tutorials.TutorialSurfaceView
24 af88bf2e Leszek Koltunski
           android:id="@+id/tutorialSurfaceView"
25 eb49fa90 Leszek Koltunski
           android:layout_width="match_parent"
26
           android:layout_height="match_parent"
27
           android:layout_alignParentStart="true"/>
28 af88bf2e Leszek Koltunski
29
        <LinearLayout
30 2971588c Leszek Koltunski
           android:id="@+id/tutorialRightBar"
31 eb49fa90 Leszek Koltunski
           android:layout_alignParentRight="true"
32 344f290c Leszek Koltunski
           android:layout_width="0dp"
33 af88bf2e Leszek Koltunski
           android:layout_height="match_parent"
34
           android:orientation="vertical"
35
           android:background="@android:color/transparent">
36 eb49fa90 Leszek Koltunski
        </LinearLayout>
37 344f290c Leszek Koltunski
38 eb49fa90 Leszek Koltunski
    </RelativeLayout>
39
</LinearLayout>