mirror of
https://gitlab.com/neothefox/LayTray
synced 2026-06-13 14:30:49 +03:00
Fixed wrong cast
This commit is contained in:
@@ -145,7 +145,7 @@ implements View.OnClickListener, SharedPreferences.OnSharedPreferenceChangeListe
|
|||||||
for (int i=0; i < count; i++)
|
for (int i=0; i < count; i++)
|
||||||
{
|
{
|
||||||
LinearLayout layoutLine = (LinearLayout)parent.getChildAt(i);
|
LinearLayout layoutLine = (LinearLayout)parent.getChildAt(i);
|
||||||
EditText layoutName = (EditText)layoutLine.getChildAt(0);
|
TextView layoutName = (TextView)layoutLine.getChildAt(0);
|
||||||
EditText layoutIcon = (EditText)layoutLine.getChildAt(1);
|
EditText layoutIcon = (EditText)layoutLine.getChildAt(1);
|
||||||
String layoutNameValue = layoutName.getText().toString();
|
String layoutNameValue = layoutName.getText().toString();
|
||||||
String layoutIconValue = layoutIcon.getText().toString();
|
String layoutIconValue = layoutIcon.getText().toString();
|
||||||
|
|||||||
Reference in New Issue
Block a user