如何在Android Wear上使用Intent(由Google穿戴OS)

时间:2018-08-15 06:55:05

标签: java android android-studio android-wear-2.0

我试图在ticwatch pro上使用这样的意图。 但是,该应用程序停止了。 我想要一些有关此的信息。

此代码位于MainActivity

Intent intent = new Intent(MainActivity.this, TestActivity.class);
            startActivity(intent);

此代码在TestActivity中

public class TestActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_test);

        Intent intent = getIntent();
    }
}

此代码为activity_test.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".TestActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="hello"/>

</android.support.constraint.ConstraintLayout>

0 个答案:

没有答案