Skip to content

gzeinnumer/TextInputLayoutProgrammatically

Repository files navigation

TextInputLayoutProgrammatically

bsa untuk view yang lain jga

  • temp_layout.xml
<?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="wrap_content">

    <com.google.android.material.textfield.TextInputLayout
        android:id="@+id/text_input_layout"
        style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:layout_marginTop="16dp">

        <com.google.android.material.textfield.TextInputEditText
            android:id="@+id/text_input_edit_text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="Enter User Name" />
    </com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
  • main_activity.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <LinearLayout
        android:id="@+id/ln"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>
  • MainActivity.java
public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        LinearLayout linearLayout = findViewById(R.id.ln);
        final View[] views = new View[2];
        for (int i = 0; i < 2; i++) {
            views[i] = LayoutInflater.from(this).inflate(R.layout.temp_layout, null);
            TextInputLayout textInputLayout = views[i].findViewById(R.id.text_input_layout);
            TextInputEditText textInputEditText = views[i].findViewById(R.id.text_input_edit_text);
            textInputLayout.setHint("Please Enter User Name");
            textInputEditText.setText("Text Here");
            linearLayout.addView(views[i]);
        }
    }
}
  • Preview


Copyright 2020 M. Fadli Zein

About

bsa untuk view yang lain jga

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages