Project

General

Profile

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

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

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
              android:id="@+id/fragment3dRowAlpha"
4
              android:layout_width="match_parent"
5
              android:layout_height="wrap_content"
6
              android:orientation="horizontal">
7

    
8
    <LinearLayout
9
        android:layout_width="0dp"
10
        android:layout_height="wrap_content"
11
        android:layout_weight="0.8"
12
        android:orientation="vertical" >
13

    
14
        <TextView
15
            android:id="@+id/fragment3dalphaText"
16
            android:layout_width="wrap_content"
17
            android:layout_height="wrap_content"
18
            android:layout_marginEnd="5dp"
19
            android:layout_marginStart="5dp"
20
            android:layout_marginTop="3dp"
21
            />
22

    
23
        <SeekBar
24
            android:id="@+id/fragment3dalphaBar1"
25
            android:layout_width="fill_parent"
26
            android:layout_height="wrap_content"
27
            android:layout_marginEnd="5dp"
28
            android:layout_marginLeft="5dp"
29
            android:layout_marginRight="5dp" />
30
    </LinearLayout>
31

    
32
    <Button
33
        android:id="@+id/fragment3dUpAlpha"
34
        android:layout_width="60dp"
35
        android:layout_height="fill_parent"
36
        android:onClick="ButtonAlpha"
37
        android:text="@string/Up" />
38
</LinearLayout>
(8-8/30)