أرشيف الوسم : level

عرض حالة البطارية في تطبيق اندرويد برمجياً

بسم الله الرحمن الرحيم كيفية عرض حالة البطارية + هل الشاحن موصول في الجهاز, برمجياً في تطبيق اندرويد. قم بإنشاء تطبيق جديد, وأنسخ الأكواد التالية : main.xml <LinearLayout android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical" tools:context=".Main" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_margin="30dp"> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="20dp" android:layout_gravity="center" > <TextView android:id="@+id/tv_percentage" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#ff0000" android:textColor="#000" android:textSize="20sp" android:text="مجهولة" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="20sp" android:text="نسبة الشحن : " /> </LinearLayout> …

أكمل القراءة »