cordova-plugin-stepist
Version:
Cordova / PhoneGap Plugin for the Step Counting (Pedometer).
47 lines (42 loc) • 1.77 kB
text/xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/notificationBackground"
android:padding="2dp">
<ImageView
android:id="@+id/imageView"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_weight="1"
android:background="#ffffff"
app:srcCompat="@drawable/sound_offx48" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="0dp"
android:layout_toEndOf="@+id/imageView"
android:orientation="vertical">
<TextView
android:id="@+id/text_location"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginStart="8dp"
android:layout_marginTop="1dp"
android:text="Konum: Bilinmiyor"
android:textColor="@color/notificationText"
android:textSize="14sp" />
<TextView
android:id="@+id/text_steps"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/text_location"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:text="Adımlar: 0"
android:textColor="@color/notificationText"
android:textSize="14sp" />
</LinearLayout>
</RelativeLayout>