master
Horse861 2 weeks ago
parent 527bcc801a
commit 5f294976c5

Binary file not shown.

@ -0,0 +1,2 @@
#Fri May 24 12:12:58 CST 2024
java.home=D\:\\android studio\\jbr

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="CompilerConfiguration"> <component name="CompilerConfiguration">
<bytecodeTargetLevel target="17" /> <bytecodeTargetLevel target="11" />
</component> </component>
</project> </project>

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="deploymentTargetDropDown">
<targetSelectedWithDropDown>
<Target>
<type value="QUICK_BOOT_TARGET" />
<deviceKey>
<Key>
<type value="VIRTUAL_DEVICE_PATH" />
<value value="C:\Users\92911\.android\avd\Pixel_2_API_28.avd" />
</Key>
</deviceKey>
</Target>
</targetSelectedWithDropDown>
<timeTargetWasSelectedWithDropDown value="2025-05-16T13:41:40.269937900Z" />
</component>
</project>

@ -5,15 +5,15 @@
<option name="linkedExternalProjectsSettings"> <option name="linkedExternalProjectsSettings">
<GradleProjectSettings> <GradleProjectSettings>
<option name="testRunner" value="GRADLE" /> <option name="testRunner" value="GRADLE" />
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" /> <option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleJvm" value="jbr-17" /> <option name="gradleJvm" value="Embedded JDK" />
<option name="modules"> <option name="modules">
<set> <set>
<option value="$PROJECT_DIR$" /> <option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" /> <option value="$PROJECT_DIR$/app" />
</set> </set>
</option> </option>
<option name="resolveExternalAnnotations" value="false" />
</GradleProjectSettings> </GradleProjectSettings>
</option> </option>
</component> </component>

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectMigrations">
<option name="MigrateToGradleLocalJavaHome">
<set>
<option value="$PROJECT_DIR$" />
</set>
</option>
</component>
</project>

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" /> <component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="jbr-11" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" /> <output url="file://$PROJECT_DIR$/build/classes" />
</component> </component>
<component name="ProjectType"> <component name="ProjectType">

@ -0,0 +1,13 @@
9
README.md,8\e\8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d
<
build.gradle,f\0\f07866736216be0ee2aba49e392191aeae700a35
?
settings.gradle,0\5\05efc8b1657769a27696d478ded1e95f38737233
7
LICENSE,0\3\0398ccd0f49298b10a3d76a47800d2ebecd49859
;
gradlew.bat,2\a\2a45a911a8f1836b0b6c5b758962572012d8f8c3
@
app/build.gradle,f\4\f4a01d6a4fcb971362ec00a83903fd3902f52164

@ -0,0 +1,13 @@
9
README.md,8\e\8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d
<
build.gradle,f\0\f07866736216be0ee2aba49e392191aeae700a35
?
settings.gradle,0\5\05efc8b1657769a27696d478ded1e95f38737233
7
LICENSE,0\3\0398ccd0f49298b10a3d76a47800d2ebecd49859
;
gradlew.bat,2\a\2a45a911a8f1836b0b6c5b758962572012d8f8c3
@
app/build.gradle,f\4\f4a01d6a4fcb971362ec00a83903fd3902f52164

@ -0,0 +1,101 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.viewbinding.ViewBindings;
import android.widget.Button;
import android.widget.EditText;
import android.widget.RelativeLayout;
import android.widget.TextView;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micode.notes.R;
public final class DialogEditBinding implements ViewBinding {
@NonNull
private final RelativeLayout rootView;
@NonNull
public final EditText etPhone;
@NonNull
public final Button no;
@NonNull
public final TextView title;
@NonNull
public final Button yes;
private DialogEditBinding(@NonNull RelativeLayout rootView, @NonNull EditText etPhone,
@NonNull Button no, @NonNull TextView title, @NonNull Button yes) {
this.rootView = rootView;
this.etPhone = etPhone;
this.no = no;
this.title = title;
this.yes = yes;
}
@Override
@NonNull
public RelativeLayout getRoot() {
return rootView;
}
@NonNull
public static DialogEditBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static DialogEditBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.dialog_edit, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static DialogEditBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.et_phone;
EditText etPhone = ViewBindings.findChildViewById(rootView, id);
if (etPhone == null) {
break missingId;
}
id = R.id.no;
Button no = ViewBindings.findChildViewById(rootView, id);
if (no == null) {
break missingId;
}
id = R.id.title;
TextView title = ViewBindings.findChildViewById(rootView, id);
if (title == null) {
break missingId;
}
id = R.id.yes;
Button yes = ViewBindings.findChildViewById(rootView, id);
if (yes == null) {
break missingId;
}
return new DialogEditBinding((RelativeLayout) rootView, etPhone, no, title, yes);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -0,0 +1,68 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.viewbinding.ViewBindings;
import android.widget.LinearLayout;
import android.widget.ListView;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micode.notes.R;
public final class SearchListBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
@NonNull
public final ListView listview;
private SearchListBinding(@NonNull LinearLayout rootView, @NonNull ListView listview) {
this.rootView = rootView;
this.listview = listview;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static SearchListBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static SearchListBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.search_list, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static SearchListBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.listview;
ListView listview = ViewBindings.findChildViewById(rootView, id);
if (listview == null) {
break missingId;
}
return new SearchListBinding((LinearLayout) rootView, listview);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -0,0 +1,10 @@
/**
* Automatically generated file. DO NOT MODIFY
*/
package net.micode.notes.test;
public final class BuildConfig {
public static final boolean DEBUG = Boolean.parseBoolean("true");
public static final String APPLICATION_ID = "net.micode.notes.test";
public static final String BUILD_TYPE = "debug";
}

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="dialog_edit" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\dialog_edit.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.RelativeLayout"><Targets><Target tag="layout/dialog_edit_0" view="RelativeLayout"><Expressions/><location startLine="1" startOffset="0" endLine="80" endOffset="16"/></Target><Target id="@+id/title" view="TextView"><Expressions/><location startLine="13" startOffset="8" endLine="22" endOffset="61"/></Target><Target id="@+id/et_phone" view="EditText"><Expressions/><location startLine="24" startOffset="8" endLine="35" endOffset="61"/></Target><Target id="@+id/no" view="Button"><Expressions/><location startLine="48" startOffset="12" endLine="58" endOffset="65"/></Target><Target id="@+id/yes" view="Button"><Expressions/><location startLine="65" startOffset="12" endLine="75" endOffset="65"/></Target></Targets></Layout>

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="search_list" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\search_list.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/search_list_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="16" endOffset="14"/></Target><Target id="@+id/listview" view="ListView"><Expressions/><location startLine="8" startOffset="4" endLine="15" endOffset="40"/></Target></Targets></Layout>

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save