adding the top label at speed dial screen

This commit is contained in:
tibbi 2020-01-17 11:54:16 +01:00
parent 516976413d
commit 23cdc2bd54
2 changed files with 28 additions and 1 deletions

View File

@ -1,5 +1,11 @@
package com.simplemobiletools.contacts.pro.activities
class ManageSpeedDialActivity : SimpleActivity() {
import android.os.Bundle
import com.simplemobiletools.contacts.pro.R
class ManageSpeedDialActivity : SimpleActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_manage_speed_dial)
}
}

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/manage_speed_dial_scrollview"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/manage_speed_dial_wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/manage_speed_dial_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/normal_margin"
android:text="@string/speed_dial_label"
android:textSize="@dimen/bigger_text_size" />
</RelativeLayout>
</ScrollView>