Project

General

Profile

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

magiccube / src / main / res / layout / tutorial_no_webview.xml @ 6bce6217

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
    <TextView
11
        android:id="@+id/tutorialError"
12
        android:layout_width="match_parent"
13
        android:text="@string/webview_error"
14
        android:gravity="center"
15
        android:layout_height="0dp"
16
        android:layout_weight="1"/>
17

    
18
    <RelativeLayout
19
        android:id="@+id/tutorialLowerPart"
20
        android:layout_width="match_parent"
21
        android:layout_height="0dp"
22
        android:layout_weight="1.2">
23

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

    
30
        <LinearLayout
31
           android:id="@+id/tutorialRightBar"
32
           android:layout_alignParentRight="true"
33
           android:layout_width="0dp"
34
           android:layout_height="match_parent"
35
           android:orientation="vertical"
36
           android:background="@android:color/transparent">
37
        </LinearLayout>
38

    
39
    </RelativeLayout>
40
</LinearLayout>
41

    
(54-54/56)