You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

activity_connection.xml 851B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout 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:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. android:padding="10dp"
  9. tools:context=".ConnectionActivity">
  10. <TextView
  11. android:id="@+id/tvConnectionStatusmessage"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:text="Connection Activity">
  15. </TextView>
  16. <Button
  17. android:id="@+id/connectionBackToMainActivity"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:text="Back to MainActivity">
  21. </Button>
  22. </LinearLayout>