Home
last modified time | relevance | path

Searched refs:appLinkIntentUri (Results 1 – 2 of 2) sorted by relevance

/developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/model/
DSubscription.java22 private String appLinkIntentUri; field in Subscription
29 String name, String description, String appLinkIntentUri, int channelLogo) { in Subscription() argument
32 this.appLinkIntentUri = appLinkIntentUri; in Subscription()
37 String name, String description, String appLinkIntentUri, int channelLogo) { in createSubscription() argument
38 return new Subscription(name, description, appLinkIntentUri, channelLogo); in createSubscription()
58 return appLinkIntentUri; in getAppLinkIntentUri()
61 public void setAppLinkIntentUri(String appLinkIntentUri) { in setAppLinkIntentUri() argument
62 this.appLinkIntentUri = appLinkIntentUri; in setAppLinkIntentUri()
/developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/util/
DTvUtil.java89 Uri appLinkIntentUri = Uri.parse(subscription.getAppLinkIntentUri()); in createChannel() local
95 .setAppLinkIntentUri(appLinkIntentUri); in createChannel()