需求:mvp实现
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="#ff3660"
android:gravity="center"
android:text="商品详情"
android:textColor="#ffffff"
android:textSize="25sp" />
<ImageView
android:id="@+id/iv"
android:layout_width="match_parent"
android:layout_height="400dp" />
<TextView
android:id="@+id/tvBargainPrice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp" />
<TextView
android:id="@+id/tvPrice"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"></View>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp">
<TextView
android:id="@+id/tvCart"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#33000000"
android:gravity="center"
android:text="购物车" />
<TextView
android:id="@+id/tvAddCart"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#33000000"
android:gravity="center"
android:text="加入购物车" />
</LinearLayout>
</LinearLayout>
view层
public class DetailsActivity extends AppCompatActivity implements IDetailsListener, View.OnClickListener {
priva