Skip to content
Snippets Groups Projects
Commit b62c4bee authored by Alexandre Lision's avatar Alexandre Lision
Browse files

* #31093: bigger dialer

parent e1c96dbf
No related branches found
No related tags found
No related merge requests found
......@@ -6,9 +6,10 @@
<EditText
android:id="@+id/clearable_edit"
android:layout_width="match_parent"
android:layout_height="50dp"
android:hint="@string/dial_hint"
android:paddingRight="35dip" />
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textSize="30sp"
android:hint="@string/dial_hint" />
<Button
android:id="@+id/clearable_button_clear"
......
......@@ -66,7 +66,6 @@ public class ClearableEditText extends RelativeLayout {
btn_clear.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
edit_text.setText("");
}
});
......@@ -77,7 +76,6 @@ public class ClearableEditText extends RelativeLayout {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
if (s.length() > 0)
btn_clear.setVisibility(RelativeLayout.VISIBLE);
else
......@@ -86,14 +84,10 @@ public class ClearableEditText extends RelativeLayout {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment