Welcome to mirror list, hosted at ThFree Co, Russian Federation.

expandable_list_layout.xml « layout « res « main « src « News-Android-App - github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3ce8e1d122ca15a2c6eebea9bd4815be516a064 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/slider_listview_background_color_dark_theme">

    <!-- android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" -->

    <!--
    <ExpandableListView android:id="@+id/expandableListView"
               android:layout_width="match_parent"
               android:layout_height="match_parent"/>

    -->



    <uk.co.senab.actionbarpulltorefresh.extras.actionbarsherlock.PullToRefreshLayout
        android:id="@+id/ptr_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <de.luhmer.owncloudnewsreader.ListView.BlockingExpandableListView
            android:id="@+id/expandableListView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginLeft="5dp"
            android:layout_marginRight="5dp"/>


        <!--
        <View
            android:layout_width="3dp"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:background="@drawable/listview_shadow" />
            -->


    </uk.co.senab.actionbarpulltorefresh.extras.actionbarsherlock.PullToRefreshLayout>
	<!--  </com.handmark.pulltorefresh.library.PullToRefreshScrollView>-->

    <RelativeLayout
        android:id="@+id/pbProgress"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:focusable="true"
        android:visibility="gone">

        <ProgressBar
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"/>
    </RelativeLayout>

</RelativeLayout>