Skip to content

Commit

Permalink
Improved instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
nadam committed May 20, 2013
1 parent 44fbd1c commit 8cb8ae3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 22 deletions.
39 changes: 18 additions & 21 deletions res/layout/tag_viewer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,21 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1">
<LinearLayout
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoLink="email"
android:text="@string/intro_message" />
</LinearLayout>
</ScrollView>
</LinearLayout>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
<LinearLayout
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:autoLink="email|web"
android:text="@string/intro_message" />
</LinearLayout>
</ScrollView>
2 changes: 1 addition & 1 deletion res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
-->
<resources>
<string name="app_name">NFC Reader</string>
<string name="intro_message">This is just a simple app to read and display various tags (NDEF, RFID, FeliCa, ISO 14443, etc).\n\nYou typically use it by holding a tag/card against the back of your phone/tablet.\n\nPlease let me know if you want me to change how the data is displayed. Also send me an e-mail ([email protected]) if you have problem with this app and I\'ll let you know when I\'ve fixed it. Thanks!\n\nIf you can\'t read any tag, please try some of the other NFC apps on Google Play.</string>
<string name="intro_message">This is a simple app to read various tags (NDEF, RFID, FeliCa, ISO 14443, etc).\n\nYou use it by holding a tag/card against the back of your phone/tablet.\n\nPlease let me know if you want me to change how the data is displayed. Also send me an e-mail ([email protected]) if you have any problems with the app and I\'ll let you know when I\'ve fixed it. You can also see the source code and report issues at https://github.com/nadam/nfc-reader.\n\nIf you can\'t read any tag, please try some of the other NFC apps on Google Play and let me know if this app is the only one not working. Thanks!\n\n/Adam</string>
<string name="error">Error</string>
<string name="no_nfc">No NFC found on this device</string>
<string name="nfc_disabled">NFC is not enabled. Please go to the wireless settings to enable it.</string>
Expand Down

0 comments on commit 8cb8ae3

Please sign in to comment.