activity_main.xml 1.1 KB

12345678910
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
  3. xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
  4. <RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent">
  5. <LinearLayout android:orientation="vertical" android:paddingTop="25.0dip" android:paddingBottom="25.0dip" android:visibility="visible" android:layout_width="wrap_content" android:layout_height="wrap_content">
  6. <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/shamir_text" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" />
  7. <TextView android:id="@id/resultText" android:layout_width="206.0dip" android:layout_height="92.0dip" />
  8. </LinearLayout>
  9. </RelativeLayout>
  10. </androidx.constraintlayout.widget.ConstraintLayout>