mirror of
				https://github.com/lacerta-doc/Lacerta.git
				synced 2025-11-03 16:40:47 +00:00 
			
		
		
		
	アクティビティ作成
This commit is contained in:
		
							parent
							
								
									57ca804b2b
								
							
						
					
					
						commit
						5b1461ff26
					
				@ -30,6 +30,8 @@ dependencies {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    implementation libs.androidx.appcompat
 | 
					    implementation libs.androidx.appcompat
 | 
				
			||||||
    implementation libs.com.google.android.material
 | 
					    implementation libs.com.google.android.material
 | 
				
			||||||
 | 
					    implementation libs.androidx.activity
 | 
				
			||||||
 | 
					    implementation libs.androidx.constraintlayout
 | 
				
			||||||
    testImplementation libs.junit
 | 
					    testImplementation libs.junit
 | 
				
			||||||
    androidTestImplementation libs.androidx.test.ext.junit
 | 
					    androidTestImplementation libs.androidx.test.ext.junit
 | 
				
			||||||
    androidTestImplementation libs.androidx.test.espresso.core
 | 
					    androidTestImplementation libs.androidx.test.espresso.core
 | 
				
			||||||
 | 
				
			|||||||
@ -1,4 +1,10 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					<?xml version="1.0" encoding="utf-8"?>
 | 
				
			||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
 | 
					<manifest xmlns:android="http://schemas.android.com/apk/res/android">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <application>
 | 
				
			||||||
 | 
					        <activity
 | 
				
			||||||
 | 
					            android:name=".ScannerOverrideActivity"
 | 
				
			||||||
 | 
					            android:exported="false" />
 | 
				
			||||||
 | 
					    </application>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
</manifest>
 | 
					</manifest>
 | 
				
			||||||
@ -0,0 +1,24 @@
 | 
				
			|||||||
 | 
					package one.nem.lacerta.component.scanner;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import android.os.Bundle;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import androidx.activity.EdgeToEdge;
 | 
				
			||||||
 | 
					import androidx.appcompat.app.AppCompatActivity;
 | 
				
			||||||
 | 
					import androidx.core.graphics.Insets;
 | 
				
			||||||
 | 
					import androidx.core.view.ViewCompat;
 | 
				
			||||||
 | 
					import androidx.core.view.WindowInsetsCompat;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					public class ScannerOverrideActivity extends AppCompatActivity {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @Override
 | 
				
			||||||
 | 
					    protected void onCreate(Bundle savedInstanceState) {
 | 
				
			||||||
 | 
					        super.onCreate(savedInstanceState);
 | 
				
			||||||
 | 
					        EdgeToEdge.enable(this);
 | 
				
			||||||
 | 
					        setContentView(R.layout.activity_scanner_override);
 | 
				
			||||||
 | 
					        ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> {
 | 
				
			||||||
 | 
					            Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars());
 | 
				
			||||||
 | 
					            v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom);
 | 
				
			||||||
 | 
					            return insets;
 | 
				
			||||||
 | 
					        });
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@ -0,0 +1,10 @@
 | 
				
			|||||||
 | 
					<?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:id="@+id/main"
 | 
				
			||||||
 | 
					    android:layout_width="match_parent"
 | 
				
			||||||
 | 
					    android:layout_height="match_parent"
 | 
				
			||||||
 | 
					    tools:context=".ScannerOverrideActivity">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					</androidx.constraintlayout.widget.ConstraintLayout>
 | 
				
			||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user