我试图在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>