Project

General

Profile

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

examples / src / main / res / layout / meshfilecomponent.xml @ 39b925d5

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:orientation="horizontal">
6

    
7
     <TextView
8
          android:id="@+id/meshfileComponentID"
9
          android:layout_width="wrap_content"
10
          android:layout_height="wrap_content"
11
          android:layout_marginEnd="5dp"
12
          android:layout_marginStart="5dp"
13
          android:layout_marginTop="5dp"
14
          android:layout_weight="1"/>
15

    
16
     <TextView
17
          android:id="@+id/meshfileComponentText"
18
          android:layout_width="wrap_content"
19
          android:layout_height="wrap_content"
20
          android:layout_marginEnd="5dp"
21
          android:layout_marginStart="5dp"
22
          android:layout_marginTop="5dp"
23
          android:layout_weight="1"/>
24

    
25
     <Button
26
          android:id="@+id/meshfileComponentAppear"
27
          android:text="@string/appear"
28
          android:layout_width="wrap_content"
29
          android:layout_height="wrap_content"
30
          android:layout_weight="0.2"
31
          android:layout_marginEnd="5dp"
32
          android:layout_marginStart="5dp"
33
          android:layout_marginTop="5dp"/>
34

    
35
     <Button
36
          android:id="@+id/meshfileComponentDisappear"
37
          android:text="@string/disappear"
38
          android:layout_width="wrap_content"
39
          android:layout_height="wrap_content"
40
          android:layout_weight="0.2"
41
          android:layout_marginEnd="5dp"
42
          android:layout_marginStart="5dp"
43
          android:layout_marginTop="5dp"/>
44
</LinearLayout>
(30-30/51)