~openlp-android/openlp/version2

« back to all changes in this revision

Viewing changes to app/src/main/res/layout-xlarge/fragment_livelist_list.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:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
 
 
3
<LinearLayout
 
4
        xmlns:android="http://schemas.android.com/apk/res/android"
 
5
        android:id="@+id/fragment_live_list_layout"
 
6
        android:layout_width="match_parent"
 
7
        android:layout_height="match_parent"
 
8
        android:orientation="horizontal"
 
9
        android:smoothScrollbar="true"
 
10
        android:clickable="false"
 
11
        android:longClickable="false">
 
12
    <TextView
 
13
            android:id="@+id/tag"
 
14
            android:layout_width="0dp"
 
15
            android:layout_height="wrap_content"
 
16
            android:textSize="14sp"
 
17
            android:paddingTop="10dp"
 
18
            android:paddingRight="5dp"
 
19
            android:paddingLeft="5dp"
 
20
            android:paddingBottom="10dp"
 
21
            android:layout_weight="1"/>
 
22
    <TextView
 
23
            android:id="@+id/liveListNormal"
 
24
            android:layout_width="0dp"
 
25
            android:layout_height="wrap_content"
 
26
            android:textColor="#ff2a2a2a"
 
27
            android:textSize="14sp"
 
28
            android:paddingTop="10dp"
 
29
            android:paddingBottom="10dp"
 
30
            android:textStyle="normal"
 
31
            android:layout_weight="1"/>
 
32
    <TextView
 
33
            android:id="@+id/liveListSelected"
 
34
            android:layout_width="0dp"
 
35
            android:layout_height="wrap_content"
 
36
            android:textColor="#000000"
 
37
            android:textSize="14sp"
 
38
            android:paddingTop="10dp"
 
39
            android:paddingBottom="10dp"
 
40
            android:textStyle="bold|italic"
 
41
            android:layout_weight="1"/>
 
42
</LinearLayout>