布局
<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);}