murakumo_URLコピペボタンの作成完了 #56
|
@ -1,5 +1,8 @@
|
|||
package com.example.oplogy;
|
||||
|
||||
import android.content.ClipData;
|
||||
import android.content.ClipboardManager;
|
||||
import android.content.Context;
|
||||
import android.content.DialogInterface;
|
||||
import android.content.Intent;
|
||||
import android.content.SharedPreferences;
|
||||
|
@ -26,19 +29,19 @@ import java.util.concurrent.Executors;
|
|||
|
||||
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
|
||||
|
||||
private static final String URL_TO_COPY = "https://www.youtube.com/";
|
||||
// ダイアログの宣言
|
||||
private AlertDialog alertDialog;
|
||||
|
||||
// ID作成のTextViewとImageView
|
||||
private TextView creatUUID;
|
||||
private ImageView imageUuid;
|
||||
|
||||
|
||||
// セットアップのTextViewとImageView
|
||||
private TextView setUp;
|
||||
private ImageView imageSetup;
|
||||
|
||||
// セットアップのTextViewとImageView
|
||||
// formコピー用のボタン
|
||||
private TextView formURL;
|
||||
private ImageView imageFormURL;
|
||||
// ルート作成のTextViewとImageView
|
||||
private TextView root;
|
||||
private ImageView imageRoot;
|
||||
// 提出状況のTextViewとImageView
|
||||
|
@ -71,6 +74,13 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
|||
imageSetup = findViewById(R.id.imageSetup);
|
||||
imageSetup.setOnClickListener(this);
|
||||
|
||||
// formコピー用のインテント
|
||||
formURL = findViewById(R.id.formURL);
|
||||
formURL.setOnClickListener(this);
|
||||
imageFormURL = findViewById(R.id.imageFormURL);
|
||||
imageFormURL.setOnClickListener(this);
|
||||
|
||||
|
||||
// ルート作成用のインテント
|
||||
root = findViewById(R.id.root);
|
||||
root.setOnClickListener(this);
|
||||
|
@ -133,6 +143,16 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
|||
finish(); // 画面遷移後元の状態に戻す
|
||||
}
|
||||
|
||||
// formコピー用のクリック処理
|
||||
if (view == formURL) {
|
||||
imageFormURL.setImageResource(R.drawable.ischecked_uuid);
|
||||
copyUrlToClipboard(URL_TO_COPY);
|
||||
}
|
||||
if (view == imageFormURL) {
|
||||
imageFormURL.setImageResource(R.drawable.ischecked_uuid);
|
||||
copyUrlToClipboard(URL_TO_COPY);
|
||||
}
|
||||
|
||||
// ルート作成のクリック処理
|
||||
if (view == root) {
|
||||
imageRoot.setImageResource(R.drawable.pin);
|
||||
|
@ -161,6 +181,7 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
//ID作成、表示に関する処理
|
||||
private void showUUIDYesNoDialog() {
|
||||
firestoreReception_classIdDatabase = new FirestoreReception_classIdDatabase();
|
||||
|
@ -279,6 +300,21 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
|
|||
}, executorService).whenComplete((result, throwable) -> executorService.shutdown());
|
||||
}
|
||||
|
||||
//クリップボードにURLをコピーする処理
|
||||
private void copyUrlToClipboard(String url) {
|
||||
try {
|
||||
ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
|
||||
ClipData clip = ClipData.newPlainText("URL", url);
|
||||
if (clipboard != null) {
|
||||
clipboard.setPrimaryClip(clip);
|
||||
Toast.makeText(this, "GoogleFormのURLをコピーしました", Toast.LENGTH_SHORT).show();
|
||||
} else {
|
||||
Toast.makeText(this, "エラー コピーできませんでした", Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
Toast.makeText(this, "Error copying URL: " + e.getMessage(), Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
}
|
||||
|
||||
//ルート作成の非同期処理
|
||||
private void fetchDataAndCreateRoute() {
|
||||
|
|
|
@ -1,33 +1,32 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<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:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
android:weightSum="20"
|
||||
tools:context=".MainActivity">
|
||||
|
||||
<Space
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="2"/>
|
||||
android:layout_weight="2" />
|
||||
|
||||
|
||||
<!-- ID作成のレイアウト-->
|
||||
<!-- ID作成のレイアウト-->
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="3"
|
||||
android:weightSum="2"
|
||||
android:orientation="horizontal">
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="2">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageUuid"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/checked_image"
|
||||
android:layout_weight="1"
|
||||
/>
|
||||
android:src="@drawable/checked_image" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/creatUUID"
|
||||
|
@ -37,110 +36,129 @@
|
|||
android:layout_weight="1"
|
||||
android:gravity="left"
|
||||
android:text="ID作成"
|
||||
android:textSize="50dp"
|
||||
/>
|
||||
android:textSize="50dp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<!-- セットアップのレイアウト-->
|
||||
<!-- セットアップのレイアウト-->
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="3"
|
||||
android:weightSum="2"
|
||||
android:orientation="horizontal">
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="2">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageSetup"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/checked_image"
|
||||
android:layout_weight="1"
|
||||
/>
|
||||
android:src="@drawable/checked_image" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/setUp"
|
||||
android:layout_width="99dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="セットアップ"
|
||||
android:textSize="40dp"
|
||||
android:textStyle="bold"
|
||||
android:layout_gravity="center"
|
||||
android:layout_weight="1"
|
||||
android:gravity="left"
|
||||
android:layout_gravity="center"/>
|
||||
android:text="セットアップ"
|
||||
android:textSize="40dp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- フォームのURLのレイアウト-->
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="3"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="2">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageFormURL"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:src="@drawable/checked_image" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/formURL"
|
||||
android:layout_width="99dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:layout_weight="1"
|
||||
android:gravity="left"
|
||||
android:text="GoogleformのURL"
|
||||
android:textSize="40dp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<Space
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="3"/>
|
||||
android:layout_weight="2" />
|
||||
|
||||
|
||||
<!-- ルート表示のレイアウト-->
|
||||
<!-- ルート表示のレイアウト-->
|
||||
<LinearLayout
|
||||
android:layout_width="400dp"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="3"
|
||||
android:weightSum="2"
|
||||
android:layout_gravity="center"
|
||||
android:orientation="horizontal">
|
||||
android:layout_weight="3"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="2">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageRoot"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/pin"
|
||||
android:layout_weight="1"
|
||||
/>
|
||||
android:src="@drawable/pin" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/root"
|
||||
android:layout_width="99dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="ルート表示"
|
||||
android:textSize="40dp"
|
||||
android:textStyle="bold"
|
||||
android:layout_gravity="center"
|
||||
android:layout_weight="1"
|
||||
android:gravity="left"
|
||||
android:layout_gravity="center"/>
|
||||
android:text="ルート表示"
|
||||
android:textSize="40dp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<!-- 提出状況のレイアウト-->
|
||||
<!-- 提出状況のレイアウト-->
|
||||
<LinearLayout
|
||||
android:layout_width="350dp"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="3"
|
||||
android:layout_gravity="center"
|
||||
android:weightSum="2"
|
||||
android:orientation="horizontal">
|
||||
android:layout_weight="3"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="2">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageSubmission"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/submission"
|
||||
android:layout_weight="1"
|
||||
/>
|
||||
android:src="@drawable/submission" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/submission"
|
||||
android:layout_width="99dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="提出状況"
|
||||
android:textSize="40dp"
|
||||
android:textStyle="bold"
|
||||
android:layout_gravity="center"
|
||||
android:layout_weight="1"
|
||||
android:gravity="left"
|
||||
android:layout_gravity="center"/>
|
||||
android:text="提出状況"
|
||||
android:textSize="40dp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</LinearLayout>
|
Loading…
Reference in New Issue
Block a user