Android Studio не открывает приложение, но эмулятор - PullRequest
0 голосов
/ 24 апреля 2019

Я написал небольшое приложение в Android Studio с kotline, и оно не запускается в телефоне-эмуляторе.Я активировал Logcat и получил некоторые предупреждения или ошибки.Это работало 1 день, прежде чем без проблем, я просто добавил метод addCart.Я программирую около 3 месяцев и знаю только основы, и с этой проблемой я больше не могу справиться, не задавая вопроса самостоятельно.

Я дам вам свой код и логи.Мне не нужна помощь в коде, если он не вызывает проблемы.Я поправлюсь к тому времени:)

Вот код:

Main:

class MainActivity : AppCompatActivity() {

    private val tag ="Main_Activity"
    private val shoppingCard = mutableListOf<Item>()
    private var txtPrice = 0.0

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        val addButton  = findViewById<Button>(R.id.addButton)
        val showButton = findViewById<Button>(R.id.showButton)

        addButton.setOnClickListener { Log.d(tag, "addButton was pressed");addCart(shoppingCard)}
        showButton.setOnClickListener { Log.d(tag, "showButton was pressed");printList(shoppingCard)}
    }

    private fun addCart(shoppingCard: MutableList<Item>){
         val name = editProductText.toString()
         val pr = editPriceText.toString()
         val price      = pr.toDouble()



        val p = Item(name,price)
        shoppingCard.add(p)
        calcPrice(shoppingCard)
    }

    private fun printList(shoppingCard: MutableList<Item>)
    {
       for(Item in shoppingCard.indices)println("The name of the product is ${shoppingCard[Item].name} and the price is
${shoppingCard[Item].price}")
    }

    private fun calcPrice(shoppingCard: MutableList<Item>)
    {
        for(Item in shoppingCard.indices) txtPrice+shoppingCard[Item].price
    }

    private fun removeItem(shoppingCard: MutableList<Item>, Item: Item)
    {
        shoppingCard.remove(Item)
        txtPrice - Item.price
    } 
}

Класс предмета:

class Item(name: String,price: Doubleuble ) {

    val name = name
    val price = price 
}

MainActivty XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:orientation="vertical"
    >


    <TextView
            android:text="Product Name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" android:id="@+id/Name"/>
    <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:inputType="textPersonName"
            android:text="Type Here"
            android:ems="10"
            android:id="@+id/editProductText"/>
    <TextView
            android:text="Price"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" android:id="@+id/Price"/>
    <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:inputType="numberDecimal"
            android:ems="10"
            android:id="@+id/editPriceText"/>
    <Button
            android:text="Add"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" android:id="@+id/addButton"/>
    <Button
            android:text="SHOW SHOPPING CART"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" android:id="@+id/showButton"/>
    <TextView
            android:layout_width="match_parent"
            android:layout_height="38dp" android:id="@+id/txtPrice"/> </LinearLayout>

Вот журналы:

E/NetworkScheduler: Invalid component specified.

2019-04-24 16:28:26.944 1592-3964/? E/AudioFlinger: not enough memory for AudioTrack size=131296

2019-04-24 16:28:26.946 1592-3964/? E/AudioFlinger: createRecordTrack_l() initCheck failed -12; no control block?
2019-04-24 16:28:26.969 1592-4736/? I/AudioFlinger: AudioFlinger's thread 0xe6d83340 tid=4736 ready to run
2019-04-24 16:28:26.984 3095-3206/? E/IAudioFlinger: createRecord returned error -12
2019-04-24 16:28:26.984 3095-3206/? E/AudioRecord: AudioFlinger could not create record track, status: -12
2019-04-24 16:28:26.987 3095-3206/? E/AudioRecord-JNI: Error creating AudioRecord instance: initialization check failed with status -12.
2019-04-24 16:28:27.004 3095-3206/? E/android.media.AudioRecord: Error code -20 when initializing native AudioRecord object.
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...