mirror of
https://gitlab.com/neothefox/LayTray
synced 2026-03-23 13:44:53 +03:00
Fixed wrong cast
This commit is contained in:
parent
d43eeb8b63
commit
7ac2d66907
@ -145,7 +145,7 @@ implements View.OnClickListener, SharedPreferences.OnSharedPreferenceChangeListe
|
||||
for (int i=0; i < count; 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);
|
||||
String layoutNameValue = layoutName.getText().toString();
|
||||
String layoutIconValue = layoutIcon.getText().toString();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user