File: main.xml

package info (click to toggle)
byte-buddy 1.18.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,644 kB
  • sloc: java: 197,326; xml: 8,007; sh: 217; ansic: 101; makefile: 14
file content (32 lines) | stat: -rw-r--r-- 1,332 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent">
    <TextView
            android:layout_marginTop="5pt"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/info"/>
    <TextView
            android:id="@+id/maven_info"
            android:layout_marginTop="5pt"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"/>
    <Button
            android:id="@+id/run_test_wrapping"
            android:layout_marginTop="10pt"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="5pt"
            android:paddingRight="5pt"
            android:text="@string/run_test_wrapping"/>
    <Button
            android:id="@+id/run_test_injecting"
            android:layout_marginTop="10pt"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="5pt"
            android:paddingRight="5pt"
            android:text="@string/run_test_injecting"/>
</LinearLayout>