Home
last modified time | relevance | path

Searched refs:getHtmlFromResources (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/
DCompanionVendorHelperDialogFragment.java25 import static com.android.companiondevicemanager.Utils.getHtmlFromResources;
131 title = getHtmlFromResources(getContext(), R.string.helper_title_app_streaming); in onViewCreated()
132 summary = getHtmlFromResources( in onViewCreated()
139 title = getHtmlFromResources(getContext(), R.string.helper_title_computer); in onViewCreated()
140 summary = getHtmlFromResources( in onViewCreated()
146 summary = getHtmlFromResources( in onViewCreated()
DPermissionListAdapter.java22 import static com.android.companiondevicemanager.Utils.getHtmlFromResources;
99 final Spanned title = getHtmlFromResources(mContext, PERMISSION_TITLES.get(type)); in onBindViewHolder()
100 final Spanned summary = getHtmlFromResources(mContext, PERMISSION_SUMMARIES.get(type)); in onBindViewHolder()
142 getHtmlFromResources(mContext, actionResourceId, permission)); in setAccessibility()
149 getHtmlFromResources(mContext, statusResourceId, permission))); in setAccessibility()
DCompanionDeviceDataTransferActivity.java22 import static com.android.companiondevicemanager.Utils.getHtmlFromResources;
88 titleView.setText(getHtmlFromResources(this, in onCreate()
91 summaryView.setText(getHtmlFromResources(this, R.string.permission_sync_summary, in onCreate()
DCompanionAssociationActivity.java38 import static com.android.companiondevicemanager.Utils.getHtmlFromResources;
454 title = getHtmlFromResources(this, PROFILE_TITLES.get(deviceProfile), deviceName); in initUiForSelfManagedAssociation()
458 final Spanned summary = getHtmlFromResources(this, summaryResourceId, in initUiForSelfManagedAssociation()
519 title = getHtmlFromResources(this, R.string.chooser_title_non_profile, mAppLabel); in initUiForMultipleDevices()
522 title = getHtmlFromResources(this, in initUiForMultipleDevices()
593 final Spanned title = getHtmlFromResources( in updateSingleDeviceUi()
598 summary = getHtmlFromResources(this, summaryResourceId, remoteDeviceName); in updateSingleDeviceUi()
604 summary = getHtmlFromResources( in updateSingleDeviceUi()
DUtils.java77 static Spanned getHtmlFromResources( in getHtmlFromResources() method in Utils