יב - פרויקטיםהמשך מיני הפרויקט שלנו–השיעור של 22.9.2020 23 ספט 202023 ספט 2020 קישור לסרטון החלון הראשי (main_activity) העיצוב (XML) <?xml version="1.0" encoding="utf-8"?><RelativeLayout 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="#567DA64D" tools:context=".MainActivity"> <TextView android:id="@+id/mainTitle" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="אפליקצית המשחקים שלי" android:layout_centerHorizontal="true" android:gravity="center" android:textSize="24sp" android:layout_margin="10dp" > …
יב - פרויקטיםהשיעור של היום–21.9.2020 21 ספט 2020 קישור להקלטה קובץ העיצוב <?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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" tools:context=".MainActivity"> <TextView android:id="@+id/mainTitle" android:layout_width="match_parent" …
יב - פרויקטיםשינוי רקע של כפתור 15 ספט 2020 public void changeBack(View view) { count++; count = count % 3; if (count == 1) b1.setBackground(getDrawable(R.drawable.xpic)); if (count == 2) b1.setBackground(getDrawable(R.drawable.circlepic)); if (count == 0) b1.setBackground(getDrawable(R.drawable.blank));}