parent
e87f841375
commit
e507c910ab
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,2 +1,2 @@
|
||||
#Wed Dec 18 21:31:30 CST 2024
|
||||
#Fri Jan 03 10:22:59 CST 2025
|
||||
java.home=E\:\\Android Studio2024\\jbr
|
||||
|
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/xiaomi-src.iml" filepath="$PROJECT_DIR$/.idea/xiaomi-src.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="4">
|
||||
<component name="SonarLintModuleSettings">
|
||||
<option name="uniqueId" value="ce495fd9-f023-49e4-9215-0511e82a48a9" />
|
||||
</component>
|
||||
</module>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="4">
|
||||
<component name="SonarLintModuleSettings">
|
||||
<option name="uniqueId" value="175ef5b2-7731-4498-8cb2-5c6af86355a3" />
|
||||
</component>
|
||||
</module>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="4">
|
||||
<component name="SonarLintModuleSettings">
|
||||
<option name="uniqueId" value="be581768-14fc-4bd0-8b92-84503ed97688" />
|
||||
</component>
|
||||
</module>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="4">
|
||||
<component name="SonarLintModuleSettings">
|
||||
<option name="uniqueId" value="49c11b84-6b83-47b7-b066-8e8b13a0f515" />
|
||||
</component>
|
||||
</module>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="4">
|
||||
<component name="SonarLintModuleSettings">
|
||||
<option name="uniqueId" value="80db17e8-cd73-418b-92a5-eed58e0d2476" />
|
||||
</component>
|
||||
</module>
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"java.configuration.updateBuildConfiguration": "interactive"
|
||||
}
|
@ -0,0 +1,113 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package net.micode.notes.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
import net.micode.notes.R;
|
||||
|
||||
public final class ActivityFaceIdentifyBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final Button btnIdentity;
|
||||
|
||||
@NonNull
|
||||
public final Button onlineCamera;
|
||||
|
||||
@NonNull
|
||||
public final ImageView onlineImg;
|
||||
|
||||
@NonNull
|
||||
public final Button onlinePick;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtGroupid;
|
||||
|
||||
private ActivityFaceIdentifyBinding(@NonNull LinearLayout rootView, @NonNull Button btnIdentity,
|
||||
@NonNull Button onlineCamera, @NonNull ImageView onlineImg, @NonNull Button onlinePick,
|
||||
@NonNull TextView txtGroupid) {
|
||||
this.rootView = rootView;
|
||||
this.btnIdentity = btnIdentity;
|
||||
this.onlineCamera = onlineCamera;
|
||||
this.onlineImg = onlineImg;
|
||||
this.onlinePick = onlinePick;
|
||||
this.txtGroupid = txtGroupid;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityFaceIdentifyBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityFaceIdentifyBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_face_identify, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityFaceIdentifyBinding 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.btn_identity;
|
||||
Button btnIdentity = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnIdentity == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.online_camera;
|
||||
Button onlineCamera = ViewBindings.findChildViewById(rootView, id);
|
||||
if (onlineCamera == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.online_img;
|
||||
ImageView onlineImg = ViewBindings.findChildViewById(rootView, id);
|
||||
if (onlineImg == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.online_pick;
|
||||
Button onlinePick = ViewBindings.findChildViewById(rootView, id);
|
||||
if (onlinePick == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txt_groupid;
|
||||
TextView txtGroupid = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtGroupid == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityFaceIdentifyBinding((LinearLayout) rootView, btnIdentity, onlineCamera,
|
||||
onlineImg, onlinePick, txtGroupid);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -0,0 +1,76 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package net.micode.notes.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ListView;
|
||||
import android.widget.RelativeLayout;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
import net.micode.notes.R;
|
||||
|
||||
public final class ActivityGroupManagerBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout groupManagerLayout;
|
||||
|
||||
@NonNull
|
||||
public final ListView lvMyGroup;
|
||||
|
||||
private ActivityGroupManagerBinding(@NonNull RelativeLayout rootView,
|
||||
@NonNull RelativeLayout groupManagerLayout, @NonNull ListView lvMyGroup) {
|
||||
this.rootView = rootView;
|
||||
this.groupManagerLayout = groupManagerLayout;
|
||||
this.lvMyGroup = lvMyGroup;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityGroupManagerBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityGroupManagerBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_group_manager, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityGroupManagerBinding 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: {
|
||||
RelativeLayout groupManagerLayout = (RelativeLayout) rootView;
|
||||
|
||||
id = R.id.lv_my_group;
|
||||
ListView lvMyGroup = ViewBindings.findChildViewById(rootView, id);
|
||||
if (lvMyGroup == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityGroupManagerBinding((RelativeLayout) rootView, groupManagerLayout,
|
||||
lvMyGroup);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -0,0 +1,133 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package net.micode.notes.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.appcompat.widget.AppCompatButton;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
import net.micode.notes.R;
|
||||
|
||||
public final class ActivityIatBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final AppCompatButton asrBtn;
|
||||
|
||||
@NonNull
|
||||
public final AppCompatButton faceBtn;
|
||||
|
||||
@NonNull
|
||||
public final AppCompatButton iatBtn;
|
||||
|
||||
@NonNull
|
||||
public final AppCompatButton iseBtn;
|
||||
|
||||
@NonNull
|
||||
public final AppCompatButton nlpBtn;
|
||||
|
||||
@NonNull
|
||||
public final TextView tip;
|
||||
|
||||
@NonNull
|
||||
public final AppCompatButton ttsBtn;
|
||||
|
||||
private ActivityIatBinding(@NonNull LinearLayout rootView, @NonNull AppCompatButton asrBtn,
|
||||
@NonNull AppCompatButton faceBtn, @NonNull AppCompatButton iatBtn,
|
||||
@NonNull AppCompatButton iseBtn, @NonNull AppCompatButton nlpBtn, @NonNull TextView tip,
|
||||
@NonNull AppCompatButton ttsBtn) {
|
||||
this.rootView = rootView;
|
||||
this.asrBtn = asrBtn;
|
||||
this.faceBtn = faceBtn;
|
||||
this.iatBtn = iatBtn;
|
||||
this.iseBtn = iseBtn;
|
||||
this.nlpBtn = nlpBtn;
|
||||
this.tip = tip;
|
||||
this.ttsBtn = ttsBtn;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityIatBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityIatBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_iat, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityIatBinding 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.asrBtn;
|
||||
AppCompatButton asrBtn = ViewBindings.findChildViewById(rootView, id);
|
||||
if (asrBtn == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.faceBtn;
|
||||
AppCompatButton faceBtn = ViewBindings.findChildViewById(rootView, id);
|
||||
if (faceBtn == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.iatBtn;
|
||||
AppCompatButton iatBtn = ViewBindings.findChildViewById(rootView, id);
|
||||
if (iatBtn == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.iseBtn;
|
||||
AppCompatButton iseBtn = ViewBindings.findChildViewById(rootView, id);
|
||||
if (iseBtn == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.nlpBtn;
|
||||
AppCompatButton nlpBtn = ViewBindings.findChildViewById(rootView, id);
|
||||
if (nlpBtn == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tip;
|
||||
TextView tip = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tip == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ttsBtn;
|
||||
AppCompatButton ttsBtn = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ttsBtn == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityIatBinding((LinearLayout) rootView, asrBtn, faceBtn, iatBtn, iseBtn,
|
||||
nlpBtn, tip, ttsBtn);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -0,0 +1,114 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package net.micode.notes.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.RelativeLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
import net.micode.notes.R;
|
||||
|
||||
public final class ActivityIflytexBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final Button ChatArunStopBtn;
|
||||
|
||||
@NonNull
|
||||
public final TextView ChatNotification;
|
||||
|
||||
@NonNull
|
||||
public final EditText testInput;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout testLinearLayout;
|
||||
|
||||
@NonNull
|
||||
public final Button testStart;
|
||||
|
||||
private ActivityIflytexBinding(@NonNull RelativeLayout rootView, @NonNull Button ChatArunStopBtn,
|
||||
@NonNull TextView ChatNotification, @NonNull EditText testInput,
|
||||
@NonNull LinearLayout testLinearLayout, @NonNull Button testStart) {
|
||||
this.rootView = rootView;
|
||||
this.ChatArunStopBtn = ChatArunStopBtn;
|
||||
this.ChatNotification = ChatNotification;
|
||||
this.testInput = testInput;
|
||||
this.testLinearLayout = testLinearLayout;
|
||||
this.testStart = testStart;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityIflytexBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityIflytexBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_iflytex, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityIflytexBinding 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.Chat_arun_stop_btn;
|
||||
Button ChatArunStopBtn = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ChatArunStopBtn == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Chat_Notification;
|
||||
TextView ChatNotification = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ChatNotification == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.test_input;
|
||||
EditText testInput = ViewBindings.findChildViewById(rootView, id);
|
||||
if (testInput == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.test_LinearLayout;
|
||||
LinearLayout testLinearLayout = ViewBindings.findChildViewById(rootView, id);
|
||||
if (testLinearLayout == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.test_start;
|
||||
Button testStart = ViewBindings.findChildViewById(rootView, id);
|
||||
if (testStart == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityIflytexBinding((RelativeLayout) rootView, ChatArunStopBtn,
|
||||
ChatNotification, testInput, testLinearLayout, testStart);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -0,0 +1,136 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package net.micode.notes.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.ListView;
|
||||
import android.widget.RelativeLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
import net.micode.notes.R;
|
||||
|
||||
public final class ActivityResultIdentifyBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout idfResultLayout;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout llyGroupName;
|
||||
|
||||
@NonNull
|
||||
public final ListView lvIdentifyResult;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout rllytIdfResultTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtGroupName;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtHint;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtIdfResultTitle;
|
||||
|
||||
private ActivityResultIdentifyBinding(@NonNull LinearLayout rootView,
|
||||
@NonNull RelativeLayout idfResultLayout, @NonNull LinearLayout llyGroupName,
|
||||
@NonNull ListView lvIdentifyResult, @NonNull RelativeLayout rllytIdfResultTitle,
|
||||
@NonNull TextView txtGroupName, @NonNull TextView txtHint,
|
||||
@NonNull TextView txtIdfResultTitle) {
|
||||
this.rootView = rootView;
|
||||
this.idfResultLayout = idfResultLayout;
|
||||
this.llyGroupName = llyGroupName;
|
||||
this.lvIdentifyResult = lvIdentifyResult;
|
||||
this.rllytIdfResultTitle = rllytIdfResultTitle;
|
||||
this.txtGroupName = txtGroupName;
|
||||
this.txtHint = txtHint;
|
||||
this.txtIdfResultTitle = txtIdfResultTitle;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityResultIdentifyBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityResultIdentifyBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_result_identify, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityResultIdentifyBinding 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.idf_result_layout;
|
||||
RelativeLayout idfResultLayout = ViewBindings.findChildViewById(rootView, id);
|
||||
if (idfResultLayout == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.lly_group_name;
|
||||
LinearLayout llyGroupName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (llyGroupName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.lv_identify_result;
|
||||
ListView lvIdentifyResult = ViewBindings.findChildViewById(rootView, id);
|
||||
if (lvIdentifyResult == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.rllyt_idf_result_title;
|
||||
RelativeLayout rllytIdfResultTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (rllytIdfResultTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txt_group_name;
|
||||
TextView txtGroupName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtGroupName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txt_hint;
|
||||
TextView txtHint = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtHint == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txt_idf_result_title;
|
||||
TextView txtIdfResultTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtIdfResultTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityResultIdentifyBinding((LinearLayout) rootView, idfResultLayout,
|
||||
llyGroupName, lvIdentifyResult, rllytIdfResultTitle, txtGroupName, txtHint,
|
||||
txtIdfResultTitle);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue