Skip to content

Instantly share code, notes, and snippets.

@bariskarapinar
Created October 7, 2019 19:25
Show Gist options
  • Select an option

  • Save bariskarapinar/fb1a7ad1387ef91b17115d14b1b291b7 to your computer and use it in GitHub Desktop.

Select an option

Save bariskarapinar/fb1a7ad1387ef91b17115d14b1b291b7 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="15dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".3"
android:text="@string/name" />
<EditText
android:id="@+id/et_username"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".7"
android:imeOptions="actionDone"
android:singleLine="true"
android:inputType="textPersonName|textCapSentences"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">
</LinearLayout>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment