|
@ -8,6 +8,24 @@
|
|||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.MyApplication">
|
||||
<activity
|
||||
android:name=".tuikuan"
|
||||
android:exported="false" />
|
||||
<activity
|
||||
android:name=".daipingjia"
|
||||
android:exported="false" />
|
||||
<activity
|
||||
android:name=".daishiyong"
|
||||
android:exported="false" />
|
||||
<activity
|
||||
android:name=".daifukuan"
|
||||
android:exported="false" />
|
||||
<activity
|
||||
android:name=".dingdansousuo"
|
||||
android:exported="false" />
|
||||
<activity
|
||||
android:name=".dingdan"
|
||||
android:exported="false" />
|
||||
<activity
|
||||
android:name=".bangding"
|
||||
android:exported="false" />
|
||||
|
@ -17,7 +35,6 @@
|
|||
<activity
|
||||
android:name=".zhanghaokefu"
|
||||
android:exported="false" />
|
||||
|
||||
<activity
|
||||
android:name=".shoujihao"
|
||||
android:exported="false" />
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
package com.hnucm.c202201020427;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
|
||||
public class daifukuan extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_daifukuan);
|
||||
ConstraintLayout constraintLayout89 = findViewById(R.id.constraintLayout89);
|
||||
constraintLayout89.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(daifukuan.this, wode.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
package com.hnucm.c202201020427;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
|
||||
public class daipingjia extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_daipingjia);
|
||||
ConstraintLayout constraintLayout93 = findViewById(R.id.constraintLayout93);
|
||||
constraintLayout93.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(daipingjia.this, wode.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
package com.hnucm.c202201020427;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
|
||||
public class daishiyong extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_daishiyong);
|
||||
ConstraintLayout constraintLayout90 = findViewById(R.id.constraintLayout90);
|
||||
constraintLayout90.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(daishiyong.this, wode.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,34 @@
|
|||
package com.hnucm.c202201020427;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
|
||||
public class dingdan extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_dingdan);
|
||||
ConstraintLayout constraintLayout81 = findViewById(R.id.constraintLayout81);
|
||||
ConstraintLayout constraintLayout82 = findViewById(R.id.constraintLayout82);
|
||||
|
||||
constraintLayout81.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(dingdan.this, wode.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
constraintLayout82.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(dingdan.this, dingdansousuo.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
package com.hnucm.c202201020427;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
|
||||
public class dingdansousuo extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_dingdansousuo);
|
||||
ConstraintLayout constraintLayout83 = findViewById(R.id.constraintLayout83);
|
||||
constraintLayout83.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(dingdansousuo.this, dingdan.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
package com.hnucm.c202201020427;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
|
||||
public class tuikuan extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_tuikuan);
|
||||
ConstraintLayout constraintLayout94 = findViewById(R.id.constraintLayout94);
|
||||
constraintLayout94.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(tuikuan.this, wode.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
|
@ -23,6 +23,12 @@ public class wode extends AppCompatActivity {
|
|||
ImageView imageView18 = findViewById(R.id.imageView18);
|
||||
ImageView imageView20 = findViewById(R.id.imageView20);
|
||||
ConstraintLayout constraintLayout36 = findViewById(R.id.constraintLayout36);
|
||||
ConstraintLayout constraintLayout80 = findViewById(R.id.constraintLayout80);
|
||||
ConstraintLayout constraintLayout85 = findViewById(R.id.constraintLayout85);
|
||||
ConstraintLayout constraintLayout86 = findViewById(R.id.constraintLayout86);
|
||||
ConstraintLayout constraintLayout87 = findViewById(R.id.constraintLayout87);
|
||||
ConstraintLayout constraintLayout88 = findViewById(R.id.constraintLayout88);
|
||||
|
||||
|
||||
|
||||
imageView16.setOnClickListener(new View.OnClickListener() {
|
||||
|
@ -55,5 +61,40 @@ public class wode extends AppCompatActivity {
|
|||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
constraintLayout80.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(wode.this, dingdan.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
constraintLayout85.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(wode.this, daifukuan.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
constraintLayout86.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(wode.this, daishiyong.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
constraintLayout87.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(wode.this, daipingjia.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
constraintLayout88.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(wode.this, tuikuan.class);
|
||||
startActivity(intent);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 400 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 338 KiB |
After Width: | Height: | Size: 266 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 222 KiB |
After Width: | Height: | Size: 69 KiB |
After Width: | Height: | Size: 70 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 165 KiB |
After Width: | Height: | Size: 168 KiB |
After Width: | Height: | Size: 157 KiB |
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.constraintlayout.widget.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"
|
||||
android:background="#F4F5F8"
|
||||
tools:context=".daifukuan">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView68"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="382dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:srcCompat="@drawable/img_63" />
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout89"
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="25dp"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginTop="16dp"
|
||||
app:layout_constraintStart_toStartOf="@+id/imageView68"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView68">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
@ -0,0 +1,74 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.constraintlayout.widget.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=".daipingjia">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout7"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="105dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView73"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="105dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:srcCompat="@drawable/img_65" />
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout93"
|
||||
android:layout_width="26dp"
|
||||
android:layout_height="30dp"
|
||||
android:layout_marginStart="13dp"
|
||||
android:layout_marginTop="19dp"
|
||||
app:layout_constraintStart_toStartOf="@+id/imageView73"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView73">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="409dp"
|
||||
android:layout_height="807dp"
|
||||
android:layout_marginTop="105dp"
|
||||
android:background="#F4F5F8"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView75"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="600dp"
|
||||
app:srcCompat="@drawable/img_66" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView76"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="635dp"
|
||||
app:srcCompat="@drawable/img_67" />
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.constraintlayout.widget.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"
|
||||
android:background="#F4F5F8"
|
||||
tools:context=".daishiyong">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView72"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="392dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:srcCompat="@drawable/img_64" />
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout90"
|
||||
android:layout_width="26dp"
|
||||
android:layout_height="35dp"
|
||||
android:layout_marginStart="12dp"
|
||||
android:layout_marginTop="15dp"
|
||||
app:layout_constraintStart_toStartOf="@+id/imageView72"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView72">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
@ -0,0 +1,99 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.constraintlayout.widget.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=".dingdan">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout5"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="110dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView65"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:srcCompat="@drawable/img_55" />
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout81"
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="32dp"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginTop="21dp"
|
||||
app:layout_constraintStart_toStartOf="@+id/imageView65"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView65">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout82"
|
||||
android:layout_width="247dp"
|
||||
android:layout_height="34dp"
|
||||
android:layout_marginStart="50dp"
|
||||
android:layout_marginTop="19dp"
|
||||
app:layout_constraintStart_toStartOf="@+id/imageView65"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView65">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout6"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="802dp"
|
||||
android:layout_marginTop="110dp"
|
||||
android:background="#F4F5F8"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView66"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="680dp"
|
||||
app:srcCompat="@drawable/img_56" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView71"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="600dp"
|
||||
app:srcCompat="@drawable/img_62" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView69"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="665dp"
|
||||
app:srcCompat="@drawable/img_58" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView70"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="735dp"
|
||||
app:srcCompat="@drawable/img_59" />
|
||||
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
@ -0,0 +1,43 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.constraintlayout.widget.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"
|
||||
android:background="#FEFEFE"
|
||||
tools:context=".dingdansousuo">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView67"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="293dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:srcCompat="@drawable/img_60" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/editTextText11"
|
||||
android:layout_width="293dp"
|
||||
android:layout_height="37dp"
|
||||
android:layout_marginStart="52dp"
|
||||
android:layout_marginTop="20dp"
|
||||
android:background="#FEFEFE"
|
||||
android:ems="10"
|
||||
android:hint="搜索订单/商家名/商品名"
|
||||
android:inputType="text"
|
||||
android:textSize="15sp"
|
||||
app:layout_constraintStart_toStartOf="@+id/imageView67"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView67" />
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout83"
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="28dp"
|
||||
android:layout_marginStart="14dp"
|
||||
android:layout_marginTop="24dp"
|
||||
app:layout_constraintStart_toStartOf="@+id/imageView67"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView67">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.constraintlayout.widget.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"
|
||||
android:background="#F4F4F4"
|
||||
tools:context=".tuikuan">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView74"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="544dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:srcCompat="@drawable/img_68" />
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout94"
|
||||
android:layout_width="18dp"
|
||||
android:layout_height="29dp"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginTop="14dp"
|
||||
app:layout_constraintStart_toStartOf="@+id/imageView74"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView74">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
@ -65,4 +65,59 @@
|
|||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout80"
|
||||
android:layout_width="64dp"
|
||||
android:layout_height="70dp"
|
||||
android:layout_marginStart="20dp"
|
||||
android:layout_marginTop="222dp"
|
||||
app:layout_constraintStart_toStartOf="@+id/imageView14"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView14">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout85"
|
||||
android:layout_width="54dp"
|
||||
android:layout_height="72dp"
|
||||
android:layout_marginStart="17dp"
|
||||
android:layout_marginTop="220dp"
|
||||
app:layout_constraintStart_toEndOf="@+id/constraintLayout80"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView14">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout86"
|
||||
android:layout_width="61dp"
|
||||
android:layout_height="62dp"
|
||||
android:layout_marginStart="20dp"
|
||||
android:layout_marginTop="228dp"
|
||||
app:layout_constraintStart_toEndOf="@+id/constraintLayout85"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView14">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout87"
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="75dp"
|
||||
android:layout_marginStart="23dp"
|
||||
android:layout_marginTop="220dp"
|
||||
app:layout_constraintStart_toEndOf="@+id/constraintLayout86"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView14">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout88"
|
||||
android:layout_width="66dp"
|
||||
android:layout_height="68dp"
|
||||
android:layout_marginStart="17dp"
|
||||
android:layout_marginTop="226dp"
|
||||
app:layout_constraintStart_toEndOf="@+id/constraintLayout87"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView14">
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|