Android Open Source - AndroidWearDemo My Activity






From Project

Back to project page AndroidWearDemo.

License

The source code is released under:

Apache License

If you think the Android project AndroidWearDemo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.tencent.weardemo;
/*  w  ww  .  j  a  v  a  2 s . co m*/
import android.app.Activity;
import android.os.Bundle;
import android.support.wearable.view.WatchViewStub;
import android.widget.TextView;

public class MyActivity extends Activity {

    private TextView mTextView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_my);
        final WatchViewStub stub = (WatchViewStub) findViewById(R.id.watch_view_stub);
        stub.setOnLayoutInflatedListener(new WatchViewStub.OnLayoutInflatedListener() {
            @Override
            public void onLayoutInflated(WatchViewStub stub) {
                mTextView = (TextView) stub.findViewById(R.id.text);
            }
        });
    }
}




Java Source Code List

com.tencent.weardemo.ApplicationTest.java
com.tencent.weardemo.MyActivity.java
com.tencent.weardemo.MyActivity.java
com.tencent.weardemo.ViewEventActivity.java