[[ダウンロード]]
@HTML
<a href="http://winofsql.jp/download/tools.jar">tools.jar
<img src="http://winofsql.jp/image/lightbox_download.jpg" style="border: solid 1px #000000"></a>
▼ ソースコードと簡単な説明
<a target="_blank" href="http://logicalerror.seesaa.net/article/420526420.html" style='font-size:12px;box-shadow:none;'>Android Studio のテストの時間を短縮する為のいくつかの static メソッドをまとめた Tools クラス</a>
@HEND
[[基本環境は以下を参照して下さい]]
http://lightbox.matrix.jp/ginpro/patio.cgi?mode=view&no=472(Android Studio で tools.jar を使用して基本的なアクションを簡単に実装する)
https://lh3.googleusercontent.com/-WKMIrJXvxvs/Vy8gd6ooMHI/AAAAAAAAeYI/VdQkK5W_CTsiP1VVzXHL1-DS_xni3dEZQCCo/s576/Screenshot_2016-05-08-20-16-53.png
@SHOW
Android Studio では、同じパッケージに新規で Activity を追加すると、AndroidManifest.xml には自動的に定義が追加され、画面も作成されます。
@END
@DIV
<?xml version="1.0" encoding="utf-8"?>
<manifest package="lightbox.may.toolstest"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".Main2Activity">
</activity>
</application>
</manifest>
@END
https://lh3.googleusercontent.com/-48J8Frc2SUA/VzGA0QDSJcI/AAAAAAAAeZE/hB7CtUzOID4JfVa2v-H9X8hUTKxJwXkNwCCo/s750/_img.png |