xml - How do I layout two EditTexts side by side to each other in a GridLayout? -
i have 2 edittexts. i'd each take half of ui screen width. below xml layout file. leftmost edittext ("due date") showing i'm clearing missing here. rightmost edittext should showing "due time". please advise. .... <android.support.design.widget.textinputlayout android:id="@+id/duedate_text_input_layout" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_row="4" android:layout_column="0"> <com.example.jdw.thirdscreen.listeneredittext android:id="@+id/fedittext" android:hint="due date" android:layout_height="wrap_content" android:layout_width="match_parent" android:layout_weight="1" android:layout_alignparentleft="true" android:layout_alignparentstart="true" android:layout_gravity="start" android:inputtype="text|t...