Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a294ca58 authored by Scott Hancher's avatar Scott Hancher Committed by Josh Guilfoyle
Browse files

Sync up edit text to redlines.

parent 369a02b6
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -54,4 +54,7 @@ public class TextFieldLabel extends LinearLayout {
		mTextField = (EditText) findViewById(R.id.textFieldId);
	}

	public EditText getEditText() {
		return mTextField;
	}
}
+14 −13
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<merge
	xmlns:android="http://schemas.android.com/apk/res/android">

	<TextView android:layout_width="wrap_content"
	<TextView
		android:layout_width="100dp"
		android:layout_height="wrap_content"
		android:gravity="right"
		android:textAppearance="?android:attr/textAppearanceLabelHeader" 
		android:textAppearance="?android:attr/textAppearance"
		android:gravity="left"
		android:id="@+id/labelId"
		android:layout_marginLeft="11sp"	
		android:layout_marginRight="8sp" />

	<EditText
    	 android:layout_width="wrap_content"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content"
		android:id="@+id/textFieldId" />
	/>
+18 −19
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<merge
	xmlns:android="http://schemas.android.com/apk/res/android">

	<LinearLayout
        android:orientation="vertical" android:layout_width="fill_parent"
		android:orientation="vertical"
		android:layout_width="fill_parent"
		android:layout_height="fill_parent">

	<TextView android:layout_width="wrap_content"
		<TextView
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
		android:textAppearance="?android:attr/textAppearanceLabelHeader" 
			android:textAppearance="?android:attr/textAppearance"
			android:id="@+id/labelId"
		android:layout_marginBottom="8sp"		
		android:paddingLeft="11sp"/>
			android:layout_marginBottom="3dp" />

		<EditText
			android:layout_width="fill_parent"
			android:layout_height="fill_parent"
			android:id="@+id/textFieldId" />
		 android:paddingLeft="11sp"
        />

	</LinearLayout>
</merge>
	
 No newline at end of file