• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:app="http://schemas.android.com/apk/res-auto"
4    xmlns:tools="http://schemas.android.com/tools"
5    android:id="@+id/content_attestation"
6    android:layout_width="match_parent"
7    android:layout_height="match_parent"
8    android:paddingBottom="@dimen/activity_vertical_margin"
9    android:paddingLeft="@dimen/activity_horizontal_margin"
10    android:paddingRight="@dimen/activity_horizontal_margin"
11    android:paddingTop="@dimen/activity_vertical_margin"
12    tools:context="com.google.attestationexample.AttestationActivity"
13    tools:showIn="@layout/activity_attestation">
14
15    <TextView
16        android:id="@+id/textview"
17        android:layout_width="wrap_content"
18        android:layout_height="wrap_content"
19        android:maxLines="10000"
20        android:scrollbars="vertical"
21        android:text=""
22        android:scrollbarAlwaysDrawVerticalTrack="false"
23        android:scrollbarAlwaysDrawHorizontalTrack="false"
24        android:scrollHorizontally="false" />
25</RelativeLayout>
26