~ubuntu-branches/ubuntu/raring/glmark2/raring

« back to all changes in this revision

Viewing changes to android/res/layout/activity_editor.xml

  • Committer: Package Import Robot
  • Author(s): Ricardo Salveti de Araujo
  • Date: 2012-08-21 15:38:09 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120821153809-bwux72bat8qp2n5v
Tags: 2012.08-0ubuntu1
* New upstream release 2012.08 (LP: #1039736)
  - Avoid crashing if gl used is not >= 2.0 (LP: #842279)
* Bumping dh compatibility level to v9
* debian/control:
  - Update Standards-Version to 3.9.3.
  - Add libjpeg-dev build dependency.
  - Use libegl1-x11-dev as an build-dep alternative instead of libegl1-dev.
  - Update description of glmark2-data binary package.
* debian/copyright:
  - Refresh copyright based on the current upstrem version
* debian/rules:
  - Clean compiled python code from unpacked waflib/ directory, as
    described in http://wiki.debian.org/UnpackWaf

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 
2
                xmlns:tools="http://schemas.android.com/tools"
 
3
                android:layout_width="match_parent"
 
4
                android:layout_height="match_parent" >
 
5
 
 
6
    <LinearLayout android:id="@+id/buttonLinearLayout" 
 
7
                  android:layout_width="match_parent" 
 
8
                  android:layout_height="wrap_content" 
 
9
                  android:layout_alignParentBottom="true">
 
10
 
 
11
        <Button android:id="@+id/runButton"
 
12
                android:layout_width="0dip"
 
13
                android:layout_height="wrap_content"
 
14
                android:layout_weight="1.0"
 
15
                android:layout_alignParentBottom="true"
 
16
                android:text="@string/runButtonText" />
 
17
 
 
18
        <Button android:id="@+id/saveButton"
 
19
                android:layout_width="0dip"
 
20
                android:layout_height="wrap_content"
 
21
                android:layout_weight="1.0"
 
22
                android:layout_alignParentBottom="true"
 
23
                android:text="@string/saveButtonText" />
 
24
 
 
25
    </LinearLayout>
 
26
 
 
27
 
 
28
    <ListView android:id="@+id/editorListView"
 
29
              android:layout_above="@id/buttonLinearLayout"
 
30
              android:layout_weight="1.0"
 
31
              android:layout_width="match_parent"
 
32
              android:layout_height="match_parent"
 
33
              android:layout_alignParentTop="true" />
 
34
</RelativeLayout>