Clean up some SonarQube warnings (trailing whitespace, etc).
[platform/upstream/iotivity.git] / android / examples / simpleserver / src / main / res / layout / activity_main.xml
1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2     xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent"
3     android:layout_height="fill_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
4     android:paddingRight="@dimen/activity_horizontal_margin"
5     android:paddingTop="@dimen/activity_vertical_margin"
6     android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"
7     android:label="@string/app_name">
8
9     <ScrollView
10         android:layout_width="match_parent"
11         android:layout_height="match_parent"
12         android:id="@+id/scroll">
13
14         <TextView android:text="@string/simpleServer" android:layout_width="match_parent"
15             android:layout_height="match_parent"
16             android:id="@+id/textView"
17             android:scrollbars="vertical"
18             android:maxLines="10"/>
19
20     </ScrollView>
21
22     <LinearLayout
23         android:layout_width="match_parent"
24         android:layout_height="match_parent"
25         android:orientation="vertical"
26         android:id="@+id/linearLayout" >
27     </LinearLayout>
28
29
30 </RelativeLayout>
31