美文网首页
android 点击页面切换

android 点击页面切换

作者: 池瑶瑶 | 来源:发表于2019-06-28 16:39 被阅读0次

布局


 <android:onClick="bottom"

    android:layout_weight="1"

    android:text="查看详情"

    android:layout_width="0dp"

    android:layout_height="50dp" />

主页面


public void bottom(View view){

this.view = view;

    Toast.makeText(MainActivity.this,"查看详情",Toast.LENGTH_SHORT).show();

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

    startActivity(intent);}

相关文章

网友评论

      本文标题:android 点击页面切换

      本文链接:https://www.haomeiwen.com/subject/tejecctx.html