Create background for keyboard item
This commit is contained in:
parent
78085e71e2
commit
6bb5aa6ae2
4 changed files with 20 additions and 6 deletions
7
OsmAnd/res/drawable/keyboard_item_dark_bg.xml
Normal file
7
OsmAnd/res/drawable/keyboard_item_dark_bg.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:color="@color/map_widget_blue" android:state_pressed="true"/>
|
||||
<item android:color="@color/bg_color_dark"/>
|
||||
|
||||
</selector>
|
7
OsmAnd/res/drawable/keyboard_item_light_bg.xml
Normal file
7
OsmAnd/res/drawable/keyboard_item_light_bg.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:drawable="@color/map_widget_blue" android:state_pressed="true"/>
|
||||
<item android:drawable="@color/bg_color_light"/>
|
||||
|
||||
</selector>
|
|
@ -4,7 +4,6 @@
|
|||
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="56dp"
|
||||
android:background="?attr/bg_color"
|
||||
android:orientation="vertical">
|
||||
|
||||
<net.osmand.plus.widgets.TextViewEx
|
||||
|
|
|
@ -249,13 +249,14 @@ public class CoordinateInputDialogFragment extends DialogFragment {
|
|||
if (convertView == null) {
|
||||
convertView = LayoutInflater.from(getContext()).inflate(R.layout.input_coordinate_keyboard_item, parent, false);
|
||||
}
|
||||
convertView.setBackgroundResource(lightTheme ? R.drawable.keyboard_item_light_bg : R.drawable.keyboard_item_dark_bg);
|
||||
|
||||
TextViewEx keyboardItem = (TextViewEx) convertView.findViewById(R.id.keyboard_item);
|
||||
if (position == DELETE_BUTTON_POSITION || position == CLEAR_BUTTON_POSITION) {
|
||||
keyboardItem.setTextSize(getResources().getDimension(R.dimen.default_list_text_size));
|
||||
} else {
|
||||
keyboardItem.setTextSize(getResources().getDimension(R.dimen.map_button_text_size));
|
||||
}
|
||||
// if (position == DELETE_BUTTON_POSITION || position == CLEAR_BUTTON_POSITION) {
|
||||
// keyboardItem.setTextSize(getResources().getDimension(R.dimen.default_list_text_size));
|
||||
// } else {
|
||||
// keyboardItem.setTextSize(getResources().getDimension(R.dimen.map_button_text_size));
|
||||
// }
|
||||
|
||||
keyboardItem.setText(getItem(position));
|
||||
|
||||
|
|
Loading…
Reference in a new issue