为什么我的Android Studio应用程序在智能手机上运行缓慢?

kupeojn6  于 2023-06-20  发布在  Android
关注(0)|答案(1)|浏览(162)

我是一个初学Android的程序员,当我创建一个应用程序并安装在我的真实的手机或其他手机上时,它的工作速度非常慢(我不谈论模拟器)。

  • 文件大小只有3 MB
  • 我所做的所有应用程序都会发生这种情况。
  • 我在构建安装了应用程序的设备之前清理该高速缓存和项目:HTC 630,Samsung Galaxy S7和Samsung Duos J1。知道吗?
<?xml version="1.0" encoding="utf-8"?>

<android.support.constraint.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" android:background="@drawable/bcc">

<LinearLayout
     android:layout_width="0dp"
     android:layout_height="495dp"
     android:orientation="vertical"

     app:layout_constraintStart_toStartOf="parent"
     app:layout_constraintEnd_toEndOf="parent">

     <TextView
         android:id="@+id/textView2"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:layout_marginLeft="@dimen/edge"
         android:layout_marginTop="@dimen/edge"
         android:text="Enter your name:"
         android:textColor="#FFFFFF"
         android:textSize="@dimen/fsize"
         android:textStyle="bold"
         tools:layout_editor_absoluteX="0dp"
         tools:layout_editor_absoluteY="0dp" />

     <EditText
         android:id="@+id/editText2"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:layout_margin="@dimen/edge"
         android:ems="10"
         android:inputType="textPersonName"
         android:textColor="#FFFFFF"
         android:textSize="@dimen/fsize"
         tools:layout_editor_absoluteX="0dp"
         tools:layout_editor_absoluteY="0dp" />

     <Button
         android:id="@+id/button2"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:layout_marginLeft="@dimen/edge"
         android:layout_marginRight="@dimen/edge"

         android:onClick="nxt"
         android:text="Next"
         android:textSize="@dimen/fsize"
         tools:layout_editor_absoluteX="38dp"
         tools:layout_editor_absoluteY="0dp" />
 </LinearLayout>

</android.support.constraint.ConstraintLayout>
java代码:

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    public void nxt(View view) {

        EditText name =(EditText)findViewById(R.id.editText2);
        Intent txtint= new Intent(this,Main2Activity.class);
        Bundle b = new Bundle();

        b.putString("user",name.getText().toString());
        txtint.putExtras(b);

        startActivity(txtint);
    }
}
goucqfw6

goucqfw61#

最后我解决了这个问题。我有一个错误,在调整背景(以适应屏幕)。

相关问题