Project

General

Profile

Download (784 Bytes) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / dialog_scrollable_panes.xml @ 65bc1da3

1
<?xml version="1.0" encoding="utf-8"?>
2
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:id="@+id/updates_scroll"
4
    android:layout_width="match_parent"
5
    android:layout_height="match_parent"
6
    android:paddingLeft="10dp"
7
    android:paddingRight="10dp">
8

    
9
    <LinearLayout
10
        android:id="@+id/dialog_scrollable_main_layout"
11
        android:layout_width="match_parent"
12
        android:layout_height="wrap_content"
13
        android:background="@color/black"
14
        android:orientation="vertical">
15

    
16
        <TextView
17
            android:id="@+id/dialog_scrollable_message"
18
            android:layout_width="match_parent"
19
            android:layout_height="match_parent"
20
            android:gravity="center"/>
21

    
22
    </LinearLayout>
23

    
24
</ScrollView>
(20-20/44)