| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical" android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/ivCall"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:src="@android:drawable/sym_action_call" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="Call"
- android:textSize="42px"
- android:gravity="center"
- android:layout_marginLeft="5dp"/>
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="8"/>
- <ToggleButton
- android:id="@+id/tbCall"
- android:text="ToggleButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_weight="1"/>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/llCall"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="Nb blink : "/>
- <com.sylvrec.incallsms.UI.StarRateView
- android:id="@+id/StarRateCall"
- android:layout_width="match_parent"
- android:layout_height="30dp"/>
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="72px"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/ivSMS"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:src="@android:drawable/sym_action_chat" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="SMS"
- android:textSize="42px"
- android:gravity="center"
- android:layout_marginLeft="5dp"/>
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="8"/>
- <ToggleButton
- android:id="@+id/tbSms"
- android:text="ToggleButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_weight="1"/>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/llSms"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="Nb blink : "/>
- <com.sylvrec.incallsms.UI.StarRateView
- android:id="@+id/StarRateSms"
- android:layout_width="match_parent"
- android:layout_height="30dp"/>
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="72px"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/ivMMS"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:src="@android:drawable/sym_action_email" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="MMS"
- android:textSize="42px"
- android:gravity="center"
- android:layout_marginLeft="5dp"/>
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="8"/>
- <ToggleButton
- android:id="@+id/tbMms"
- android:text="ToggleButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_weight="1"/>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/llMms"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="Nb blink : "/>
- <com.sylvrec.incallsms.UI.StarRateView
- android:id="@+id/StarRateMms"
- android:layout_width="match_parent"
- android:layout_height="30dp"/>
- </LinearLayout>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="25dp"/>
- <com.sylvrec.incallsms.UI.TextViewPlus
- android:layout_height="wrap_content"
- android:layout_width="match_parent"
- app:TextHtml="@string/notice"/>
- </LinearLayout>
|