Author: 떠돌이개발자

Android

[안드로이드] 구구단 프로그램 만들기(코드 포함)

아주 간단하게 구구단 프로그램을 만들어 보자..  activity_main.xml——————————————————–<?xml version=”1.0″ encoding=”utf-8″?><RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android“ android:layout_width=”match_parent” android:layout_height=”match_parent”> <LinearLayout android:layout_width=”match_parent” android:layout_height=”wrap_content” android:layout_marginStart=”10dp” android:layout_marginEnd=”10dp” android:layout_marginTop=”20dp” android:layout_marginBottom=”10dp” android:gravity=”center” android:orientation=”vertical”> <TextView android:id=”@+id/text_view” android:layout_width=”match_parent” android:layout_height=”match_parent”...
Android

Fatal Exception: java.lang.RuntimeException: android.os.DeadSystemException이 발생하는 이유

Fatal Exception: java.lang.RuntimeException: android.os.DeadSystemException이 발생하는 이유는 무엇인가? Fatal Exception: java.lang.RuntimeException: android.os.DeadSystemException at android.app.ActivityThread.handleSleeping + 4433(ActivityThread.java:4433) at android.app.ActivityThread.-wrap24(ActivityThread.java) at android.app.ActivityThread$H.handleMessage + 1918(ActivityThread.java:1918) at android.os.Handler.dispatchMessage + 106(Handler.java:106)...
error: Content is protected !!