Project

General

Profile

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

examples / src / main / res / layout / meshfilecomponent.xml @ 8aece7f2

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
     <ToggleButton
26
          android:id="@+id/meshfileComponentToggle"
27
          android:textOn="@string/off"
28
          android:textOff="@string/on"
29
          android:layout_width="wrap_content"
30
          android:layout_height="wrap_content"
31
          android:layout_weight="0.2"
32
          android:layout_marginEnd="5dp"
33
          android:layout_marginStart="5dp"
34
          android:layout_marginTop="2dp"/>
35

    
36
</LinearLayout>
(30-30/51)