Project

General

Profile

Download (1.01 KB) Statistics
| Branch: | Revision:

examples / src / main / res / layout / earthlayout.xml @ 9814e53c

1 427ab7bf Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:layout_width="fill_parent"
4
    android:layout_height="fill_parent"
5
    android:gravity="center_horizontal"
6
    android:orientation="vertical" >
7
8 64558e4e Leszek Koltunski
    <org.distorted.examples.earth.EarthSurfaceView
9
        android:id="@+id/earthSurfaceView"
10 427ab7bf Leszek Koltunski
        android:layout_width="match_parent"
11
        android:layout_height="0dp"
12
        android:layout_weight="1.00" />
13
14 9c3e749e Leszek Koltunski
    <LinearLayout
15 64558e4e Leszek Koltunski
        android:id="@+id/linearLayout"
16 9c3e749e Leszek Koltunski
        android:layout_width="fill_parent"
17
        android:layout_height="wrap_content"
18
        android:gravity="center|fill_horizontal"
19
        android:orientation="horizontal"
20
        android:background="@color/blue">
21
22
        <SeekBar
23 64558e4e Leszek Koltunski
            android:id="@+id/earthInflateLevel"
24 9814e53c Leszek Koltunski
            android:layout_width="fill_parent"
25 9c3e749e Leszek Koltunski
            android:layout_height="50dp"
26
            android:paddingLeft="10dp"
27
            android:paddingRight="10dp" />
28
29
    </LinearLayout>
30
31 427ab7bf Leszek Koltunski
</LinearLayout>