前の質問で入りきらなかったのでこちらに残りのファイルの貼り付けをしました。
前の質問も同じ題名で質問しております。
Kotlin6 activity _main.xml(自分でURLから改変)
<?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=".MainActivity"> <LinearLayout 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:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.pokotsun.opencvtestbykotlin.MainActivity"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="8dp" android:orientation="horizontal"> <Button android:id="@+id/select_img1_btn" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="画像1選択"/> <Button android:id="@+id/select_img2_btn" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="画像2選択"/> </LinearLayout> <!--画像のラッパー--> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <ImageView android:id="@+id/src_img1" android:layout_width="0dp" android:layout_height="100dp" android:layout_weight="1"/> <ImageView android:id="@+id/src_img2" android:layout_width="0dp" android:layout_height="100dp" android:layout_weight="1"/> </LinearLayout> <Button android:id="@+id/decition_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:text="決定"/> <ImageView android:id="@+id/result_img" android:layout_width="wrap_content" android:layout_height="200dp" android:layout_gravity="center_horizontal"/> <TextView android:id="@+id/count_txt" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" /> </LinearLayout> </androidx.constraintlayout.widget.ConstraintLayout>
TestApp001 MainActivity.Java
package com.example.testapp001; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); }
TestApp001 activity_main.xml
<?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=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout>
あなたの回答
tips
プレビュー