(Created page with "<syntaxhighlight lang="xml"> <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.an...") |
m (added category) |
||
Line 1: | Line 1: | ||
+ | [[Category:XML_files]] | ||
<syntaxhighlight lang="xml"> | <syntaxhighlight lang="xml"> | ||
<?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> |
Latest revision as of 21:21, 12 July 2017
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="50dp" android:orientation="vertical" > <TextView android:id="@+id/tvDisplayView" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="18sp"/> <LinearLayout android:id="@+id/lytEditContainer" android:layout_width="match_parent" android:layout_height="wrap_content" android:visibility="gone"> <com.ginstr.widgets.GnEditText android:id="@+id/etCellValueChange" android:layout_width="match_parent" android:layout_height="wrap_content" gn:s_sourceType="input" /> <Button android:id="@+id/etCellValueChangeConfirm" android:layout_width="match_parent" android:layout_height="wrap_content"/> </LinearLayout> </LinearLayout>