Created
June 13, 2012 03:16
-
-
Save Matsushige/2921592 to your computer and use it in GitHub Desktop.
表示画面
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" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
android:orientation="vertical" > | |
<TextView | |
android:id="@+id/textView1" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="waiting" /> | |
<TextView | |
android:id="@+id/textView2" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="waiting" /> | |
<TextView | |
android:id="@+id/textView3" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="waiting" /> | |
<TextView | |
android:id="@+id/textView4" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="waiting" /> | |
<TextView | |
android:id="@+id/textView5" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="waiting" /> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" > | |
<Button | |
android:id="@+id/buttonActionTag" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="A. TAG" /> | |
<Button | |
android:id="@+id/buttonActionNdef" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="A. NDEF" /> | |
<Button | |
android:id="@+id/buttonActionTech" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="A. TECH" /> | |
<Button | |
android:id="@+id/buttonClear" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="Clear" /> | |
</LinearLayout> | |
<Button | |
android:id="@+id/buttonCheck" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="Check" /> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:orientation="vertical" > | |
<ScrollView | |
android:layout_width="fill_parent" | |
android:layout_height="wrap_content" | |
> | |
<TextView | |
android:id="@+id/textViewTouch" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:scrollbarAlwaysDrawVerticalTrack="true" | |
android:scrollbars="vertical" | |
android:text="TextView" /> | |
</ScrollView> | |
</LinearLayout> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment