Two samples: Details opened from browse where the overview row is the first row. Details used by Search where overview row is the second row. Added option in MainActivity to switch between using legacy DetailsOverviewRowPresenter and FullWidthDetailsOverviewRowPresenter Change-Id: I10220396b5cfc0538cd5e99e46829ddfca874359
69 lines
2.4 KiB
XML
69 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.example.android.leanback"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
|
|
<uses-sdk android:minSdkVersion="17" android:targetSdkVersion="19" />
|
|
|
|
<application
|
|
android:label="@string/app_name"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:banner="@drawable/ic_launcher"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.Example.Leanback">
|
|
|
|
<activity android:name="MainActivity"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="BrowseActivity"
|
|
android:theme="@style/Theme.Example.Leanback.Browse"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="BrowseAnimationActivity"
|
|
android:exported="true" >
|
|
</activity>
|
|
|
|
<activity android:name="DetailsActivity"
|
|
android:theme="@style/Theme.Example.Leanback.Details"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="SearchDetailsActivity"
|
|
android:theme="@style/Theme.Example.Leanback.SearchDetails"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="RowsActivity"
|
|
android:theme="@style/Theme.Example.Leanback.Rows"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="PlaybackOverlayActivity"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="VerticalGridActivity"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="SearchActivity"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="BrowseErrorActivity"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="HorizontalGridTestActivity"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="GuidedStepActivity"
|
|
android:theme="@style/Theme.Example.Leanback.GuidedStep"
|
|
android:exported="true" />
|
|
|
|
<activity android:name="DetailsPresenterSelectionActivity"
|
|
android:theme="@style/Theme.Example.Leanback.GuidedStep"
|
|
android:exported="true" />
|
|
|
|
</application>
|
|
</manifest>
|