~openlp-android/openlp/version2

« back to all changes in this revision

Viewing changes to app/src/main/res/layout/fragment_livelist_grid.xml

  • Committer: Tim Bentley
  • Date: 2015-01-19 20:26:35 UTC
  • Revision ID: tim.bentley@gmail.com-20150119202635-v3m2zh27ayojhc32
Updates for Tablet

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        android:layout_height="match_parent"
12
12
        android:numColumns="2" />
13
13
 
14
 
    <TextView
15
 
        android:id="@android:id/empty"
16
 
        android:layout_width="match_parent"
17
 
        android:layout_height="match_parent"
18
 
        android:gravity="center" />
 
14
    <LinearLayout
 
15
            xmlns:android="http://schemas.android.com/apk/res/android"
 
16
            android:id="@+id/fragment_live_list_layout"
 
17
            android:layout_width="match_parent"
 
18
            android:layout_height="match_parent"
 
19
            android:orientation="horizontal"
 
20
            android:smoothScrollbar="true"
 
21
            android:clickable="false"
 
22
            android:longClickable="false">
 
23
        <TextView
 
24
                android:id="@+id/tag"
 
25
                android:layout_width="0dp"
 
26
                android:layout_height="wrap_content"
 
27
                android:textSize="14sp"
 
28
                android:paddingTop="10dp"
 
29
                android:paddingRight="5dp"
 
30
                android:paddingLeft="5dp"
 
31
                android:paddingBottom="10dp"
 
32
                android:layout_weight="1"/>
 
33
        <TextView
 
34
                android:id="@+id/liveListNormal"
 
35
                android:layout_width="0dp"
 
36
                android:layout_height="wrap_content"
 
37
                android:textColor="#ff2a2a2a"
 
38
                android:textSize="14sp"
 
39
                android:paddingTop="10dp"
 
40
                android:paddingBottom="10dp"
 
41
                android:textStyle="normal"
 
42
                android:layout_weight="1"/>
 
43
    </LinearLayout>
19
44
 
20
45
</FrameLayout>