mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
23 lines
931 B
XML
23 lines
931 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" >
|
|
|
|
<fragment
|
|
android:id="@+id/fragment_feedintelligenceselector"
|
|
android:name="com.newsblur.fragment.FeedIntelligenceSelectorFragment"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:tag="feedIntelligenceSelector" />
|
|
|
|
<fragment
|
|
android:id="@+id/fragment_folderfeedlist"
|
|
android:name="com.newsblur.fragment.FolderListFragment"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_above="@id/fragment_feedintelligenceselector"
|
|
android:layout_alignParentTop="true"
|
|
android:tag="folderFeedListFragment" />
|
|
|
|
</RelativeLayout>
|