Sending and receiving works correctly, however establishing an SAP connection takes too long
58 lines
2.6 KiB
XML
58 lines
2.6 KiB
XML
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true"
|
|
tools:context="com.vsmartcard.acardemulator.MainActivity">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/app_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/app_bar_height"
|
|
android:fitsSystemWindows="true"
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
<android.support.design.widget.CollapsingToolbarLayout
|
|
android:id="@+id/toolbar_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true"
|
|
app:contentScrim="?attr/colorPrimary"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
app:layout_collapseMode="pin"
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
|
|
|
</android.support.design.widget.CollapsingToolbarLayout>
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
tools:context="com.vsmartcard.remotesmartcardreader.app.MainActivity"
|
|
tools:showIn="@layout/activity_main">
|
|
<TextView
|
|
android:layout_margin="@dimen/text_margin"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/textViewLog" />
|
|
</android.support.v4.widget.NestedScrollView>
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
android:id="@+id/fab"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="@dimen/fab_margin"
|
|
android:src="@mipmap/ic_reset"
|
|
app:layout_anchor="@id/app_bar"
|
|
app:layout_anchorGravity="bottom|end" />
|
|
|
|
</android.support.design.widget.CoordinatorLayout> |