aboutsummaryrefslogtreecommitdiff
path: root/res/layout/fragment_file_operations.xml
blob: 2703afb75366b5d2c258f9c7fb8eab0cdf34fb1e (plain)
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
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/FileOperationsView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity$FileOperationsContext" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <Button
            android:id="@+id/importButton"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/importConfigs_str" />

        <Space
            android:layout_width="match_parent"
            android:layout_height="25dp" />

        <Button
            android:id="@+id/exportDataBase"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/exportDataBase_str" />
    </LinearLayout>

</ScrollView>