5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

NoActivity+NoXMLで真のHelloworldを・・・

Last updated at Posted at 2014-07-14

NoActivityでHelloWorldに共感しました

ということでさらに突き詰めてNOXML、Activityクラス自前定義でいきましょう。
AndroidStudioをご用意ください。

プロジェクト作成

新しいプロジェクトを作ります。
スクリーンショット 2014-07-14 16.52.29.png

もちろんNoActivityです
スクリーンショット 2014-07-14 16.52.54.png

Activity作成

ActivityをJavaクラスから自力で作ります。
スクリーンショット 2014-07-14 16.56.11.png

MainActivity.java
public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        RelativeLayout rootView = new RelativeLayout(this,null);
        ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.MATCH_PARENT);
        addContentView(rootView,params);

        TextView hello = new TextView(this);
        hello.setText("Hello World!!");
        RelativeLayout.LayoutParams textLayoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.WRAP_CONTENT);
        textLayoutParams.addRule(RelativeLayout.CENTER_IN_PARENT);
        hello.setLayoutParams(textLayoutParams);
        rootView.addView(hello);
    }
}

ManifastのApllicationの間にActivityの記述を追記します。

AndroidManifast.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="jp.sample.app.noxmlhelloworld">
    <application android:allowBackup="true"
        android:label="@string/app_name"
        android:icon="@drawable/ic_launcher"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity"
            android:theme="@android:style/Theme.Light.NoTitleBar"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

これでLayoutXMLも不要なHelloWorldの完成です。

ふりかえり

AndroidStudioはNavigationDrawerが出る高級なアプリが自動生成されたりして、未経験者の方からすると分からなくなりがちなのでJavaだけで組んでみるのはいいトレーニングになると思います。良い試みでした。

Java側での定義のやり方や、Viewに対してSetするLayoutParamが親のViewGroupのクラスの内部クラスとして存在する点など理解が進みます。

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?