-
-
Save codeforfun-jp/0356287ea2523cb179752231dda410b5 to your computer and use it in GitHub Desktop.
[Kotlin Quiz ver2] 6-2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <LinearLayout 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:id="@+id/main" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| tools:context=".ResultActivity" | |
| android:orientation="vertical" | |
| android:gravity="center"> | |
| <TextView | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:text="@string/result_title" | |
| android:textSize="22sp" /> | |
| <TextView | |
| android:id="@+id/resultLabel" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:text="@string/result_score" | |
| android:textSize="30sp" | |
| android:layout_marginTop="60dp" /> | |
| <TextView | |
| android:id="@+id/totalScoreLabel" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:text="@string/result_total_score" | |
| android:textSize="20sp" | |
| android:layout_marginTop="60dp" /> | |
| <Button | |
| android:id="@+id/returnBtn" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:text="@string/btn_return" | |
| android:layout_marginTop="80dp" /> | |
| </LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment