Project

General

Profile

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

examples / src / main / res / layout / fragment3dbrightness.xml @ b4a73ea5

1 df77c72c Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2
3 b4a73ea5 Leszek Koltunski
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4
              android:id="@+id/fragment3dRowBrightness"
5
              android:orientation="horizontal"
6
              android:layout_width="match_parent"
7
              android:layout_height="wrap_content" >
8 df77c72c Leszek Koltunski
9 b4a73ea5 Leszek Koltunski
    <LinearLayout
10
        android:layout_width="0dp"
11
        android:layout_height="match_parent"
12
        android:layout_weight="0.70"
13
        android:orientation="vertical" >
14 df77c72c Leszek Koltunski
15 b4a73ea5 Leszek Koltunski
        <TextView
16
            android:id="@+id/fragment3dbrightnessText"
17
            android:layout_width="wrap_content"
18
            android:layout_height="wrap_content"
19
            android:layout_marginEnd="5dp"
20
            android:layout_marginStart="5dp"
21
            android:layout_marginTop="3dp" />
22 df77c72c Leszek Koltunski
23 b4a73ea5 Leszek Koltunski
        <SeekBar
24
            android:id="@+id/fragment3dbrightnessBar1"
25
            android:layout_width="fill_parent"
26
            android:layout_height="wrap_content"
27
            android:layout_gravity="end"
28
            android:layout_marginEnd="5dp"
29
            android:layout_marginLeft="5dp"
30
            android:layout_marginRight="5dp" />
31 df77c72c Leszek Koltunski
32 b4a73ea5 Leszek Koltunski
    </LinearLayout>
33 df77c72c Leszek Koltunski
34 b4a73ea5 Leszek Koltunski
    <Button
35
        android:id="@+id/fragment3dUpBrightness"
36
        android:layout_width="60dp"
37
        android:layout_height="fill_parent"
38
        android:onClick="ButtonBrightness"
39
        android:text="@string/Up" />
40 df77c72c Leszek Koltunski
41 b4a73ea5 Leszek Koltunski
</LinearLayout>