package com.example.api14;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
TextView mTextView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setupUI();
}
private void setupUI() {
setContentView(R.layout.activity_main);
mTextView = (TextView) findViewById(R.id.textView);
}
private final static String LOG_TAG = MainActivity.class.getSimpleName();
public void buttonPressed(View view) {
// TODO Log message is not appearing in Logcat when button is pressed, nothing happens!!!
Log.i(LOG_TAG, "buttonPressed(View) Called");
String stringValue = "19.01.2020";
mTextView.setText(stringValue);
Log.v(LOG_TAG, " text changed to:" + stringValue);
Log.d(LOG_TAG, "buttonPressed(View) finished");
}
}
Метод buttonPressed () должен создать сообщение Log в Logcat, однако ничего не происходит. При нажатии кнопки на виртуальном устройстве сообщения об ошибках даже нет. Nexus 5 API 24 используется. Здесь также Activity_main. xml
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TEST"
tools:layout_editor_absoluteX="56dp"
tools:layout_editor_absoluteY="62dp"
tools:ignore="MissingConstraints" />
Почему я не получаю запись в Logcat в Android Studio?