2014-06-03 08:26:14 +09:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-06-22 20:40:43 +09:30
|
|
|
<LinearLayout
|
2014-06-03 08:26:14 +09:30
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="fill_parent"
|
2015-10-19 09:21:48 +02:00
|
|
|
android:layout_height="fill_parent"
|
2014-06-22 20:40:43 +09:30
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingLeft="6dp"
|
|
|
|
android:paddingRight="6dp">
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/header"
|
|
|
|
android:name="org.fdroid.fdroid.AppDetails$AppDetailsHeaderFragment"
|
|
|
|
tools:layout="@layout/app_details_header" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
2014-06-03 08:26:14 +09:30
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/fragment_app_list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:name="org.fdroid.fdroid.AppDetails$AppDetailsListFragment"
|
|
|
|
tools:layout="@android:layout/list_content"/>
|
|
|
|
|
2014-06-22 20:40:43 +09:30
|
|
|
</LinearLayout>
|