Sample app: Use authentication instead of inline actions

Test: manual
Bug: 150499490

Change-Id: Ifc827cd1d633bf26a3450c392cc7da1211d02cfa
This commit is contained in:
Feng Cao
2020-03-18 14:16:07 -07:00
parent f4debc7358
commit c7ed6af6be
2 changed files with 13 additions and 10 deletions

View File

@@ -1,6 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="foo.bar.inline" >
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<application>
<service
android:name=".InlineFillService"
@@ -26,4 +25,3 @@
android:exported="true"/>
</application>
</manifest>

View File

@@ -31,7 +31,6 @@ import android.service.autofill.FillCallback;
import android.service.autofill.FillContext;
import android.service.autofill.FillRequest;
import android.service.autofill.FillResponse;
import android.service.autofill.InlineAction;
import android.service.autofill.InlinePresentation;
import android.service.autofill.SaveCallback;
import android.service.autofill.SaveInfo;
@@ -182,8 +181,9 @@ public class InlineFillService extends AutofillService {
// value from the request for this.
final int height = inlineRequest.getPresentationSpecs().get(0).getMinSize().getHeight();
final Size actionIconSize = new Size(height, height);
response.addInlineAction(
newInlineAction(context, actionIconSize, R.drawable.ic_settings));
response.addDataset(
newInlineActionDataset(context, actionIconSize, R.drawable.ic_settings,
fields));
}
// 2.Add save info
@@ -198,8 +198,8 @@ public class InlineFillService extends AutofillService {
return response.build();
}
static InlineAction newInlineAction(@NonNull Context context,
@NonNull Size size, int drawable) {
static Dataset newInlineActionDataset(@NonNull Context context,
@NonNull Size size, int drawable, ArrayMap<String, AutofillId> fields) {
Intent intent = new Intent().setComponent(
new ComponentName(context.getPackageName(), SettingsActivity.class.getName()));
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent,
@@ -209,9 +209,14 @@ public class InlineFillService extends AutofillService {
.build();
final InlinePresentationSpec currentSpec = new InlinePresentationSpec.Builder(size,
size).build();
return new InlineAction(
new InlinePresentation(suggestionSlice, currentSpec, /** pined= */true),
pendingIntent.getIntentSender());
Dataset.Builder builder = new Dataset.Builder()
.setInlinePresentation(
new InlinePresentation(suggestionSlice, currentSpec, /** pined= */true))
.setAuthentication(pendingIntent.getIntentSender());
for (AutofillId fieldId : fields.values()) {
builder.setValue(fieldId, null);
}
return builder.build();
}
static Dataset newUnlockedDataset(@NonNull Context context,