Thursday, April 19, 2018

membuat cetak input sederhana menggunakan android studio

kemarin kita sudah selesai membuat input satu halaman,dan sekarang mari kita buat input cetak 2 halaman kita buat aktivity baru,namakan ya bebas.
lalu koding seperti ini.
<?xml version="1.0" encoding="utf-8"?><LinearLayout 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"    android:orientation="vertical"    android:background="#fff"    tools:context="com.example.asus.y.MainActivity">



    <LinearLayout        android:layout_width="wrap_content"        android:layout_height="match_parent">

        <LinearLayout            android:layout_width="wrap_content"            android:layout_height="match_parent"            android:orientation="vertical">

            <TextView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:text="Nama Siswa"                android:textColor="#000"                android:layout_marginTop="6dp"                />

            <TextView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:text="Tempat tanggal lahir"                android:layout_marginTop="6dp"                android:textColor="#000"                />

            <TextView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:layout_marginTop="6dp"                android:textColor="#000"
                android:text="NIPD/NISN" />

            <TextView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:layout_marginTop="6dp"                android:textColor="#000"                android:text="Kelas/Tingkat" />

            <TextView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:text="Tabungan Perhari"                android:layout_marginTop="6dp"                android:textColor="#000"                />
            <TextView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:layout_marginTop="6dp"                android:textColor="#000"                android:text="Agama" />
            <TextView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:layout_marginTop="6dp"                android:textColor="#000"                android:text="Nama Orang Tua" />
            <TextView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:layout_marginTop="6dp"                android:textColor="#000"                android:text="Alamat" />
            <TextView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:layout_marginTop="6dp"
                android:text="WALI KELAS"                android:textColor="#FF000000"/>

        </LinearLayout>
        <LinearLayout            android:layout_width="wrap_content"            android:layout_height="match_parent">

            <LinearLayout                android:layout_width="wrap_content"                android:layout_height="match_parent"                android:orientation="vertical">

                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"
                    android:text=":"                    android:layout_marginTop="6dp"/>

                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"
                    android:text=":"                    android:layout_marginTop="6dp"/>

                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"
                    android:text=":"                    android:layout_marginTop="6dp"/>

                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"
                    android:text=":"                    android:layout_marginTop="6dp"/>

                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"
                    android:text=":"                    android:layout_marginTop="6dp"/>
                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"                    android:text=":"                    android:layout_marginTop="6dp"/>
                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"
                    android:text=":"                    android:layout_marginTop="6dp"/>
                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"
                    android:layout_marginTop="6dp"                    android:text=":" />
                <TextView                    android:layout_width="wrap_content"                    android:layout_height="wrap_content"
                    android:text=":"                    android:layout_marginTop="6dp"                    android:textColor="#FF000000"/>

            </LinearLayout>
            <LinearLayout                android:layout_width="match_parent"                android:layout_height="match_parent"                android:orientation="vertical"                android:layout_marginLeft="8dp"                android:layout_marginTop="8dp">

                <TextView                    android:id="@+id/txt_nama"                    android:textColor="#000"                    android:layout_width="match_parent"                    android:layout_height="wrap_content"/>
                <TextView                    android:id="@+id/txt_kelas"                    android:layout_marginTop="6dp"                    android:textColor="#000"                    android:layout_width="match_parent"                    android:layout_height="wrap_content"/>
                <TextView                    android:id="@+id/txt_umur"                    android:layout_marginTop="6dp"                    android:textColor="#000"                    android:layout_width="match_parent"                    android:layout_height="wrap_content"/>
                <TextView                    android:id="@+id/txt_alamat"                    android:layout_marginTop="6dp"                    android:textColor="#000"                    android:layout_width="match_parent"                    android:layout_height="wrap_content"/>
                <TextView                    android:id="@+id/txt_institusi"                    android:layout_marginTop="6dp"                    android:textColor="#000"                    android:layout_width="match_parent"                    android:layout_height="wrap_content"/>
                <TextView                    android:id="@+id/txt_agama"                    android:layout_marginTop="6dp"                    android:textColor="#000"                    android:layout_width="match_parent"                    android:layout_height="wrap_content"/>
                <TextView                    android:id="@+id/txt_tua"                    android:layout_marginTop="6dp"                    android:textColor="#000"                    android:layout_width="match_parent"                    android:layout_height="wrap_content"/>
                <TextView                    android:id="@+id/txt_amt"                    android:layout_marginTop="6dp"                    android:textColor="#000"                    android:layout_width="match_parent"                    android:layout_height="wrap_content"/>
                <TextView                    android:id="@+id/txt_guru"                    android:layout_marginTop="6dp"                    android:textColor="#000"                    android:layout_width="match_parent"                    android:layout_height="wrap_content"/>

                <Button                    android:layout_width="200dp"                    android:layout_height="40dp"                    android:text="Kembali"                    android:id="@+id/kembali"/>


            </LinearLayout>

        </LinearLayout>

    </LinearLayout>

</LinearLayout>
di java ya kita tambahkan ini
package com.example.asus.y;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

import butterknife.BindView;
import butterknife.ButterKnife;


public class kedua extends AppCompatActivity implements View.OnClickListener {
    Button kembali;
    @BindView(R.id.txt_nama)
    TextView hasilNama;
    @BindView(R.id.txt_kelas)
    TextView hasilkelas;
    @BindView(R.id.txt_umur)
    TextView hasilumur;
    @BindView(R.id.txt_alamat)
    TextView hasilalamat;
    @BindView(R.id.txt_institusi)
    TextView hasilinstitusi;
    @BindView(R.id.txt_agama)
    TextView hasilagama;
    @BindView(R.id.txt_tua)
    TextView hasiltua;
    @BindView(R.id.txt_amt)
    TextView hasilamt;
    @BindView(R.id.txt_guru)
    TextView hasilguru;

    @Override    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_kedua);
        ButterKnife.bind(this);

        kembali = (Button) findViewById(R.id.kembali);

        kembali.setOnClickListener(this);

        Intent i = getIntent();
        String nama = i.getStringExtra("nama");
        String kelas = i.getStringExtra("kelas");
        String umur = i.getStringExtra("umur");
        String alamat = i.getStringExtra("alamat");
        String institusi = i.getStringExtra("institusi");
        String agama = i.getStringExtra("agama");
        String tua = i.getStringExtra("tua");
        String amt = i.getStringExtra("amt");
        String guru = i.getStringExtra("guru");

        hasilNama.setText(nama);
        hasilkelas.setText(kelas);
        hasilumur.setText(umur);
        hasilalamat.setText(alamat);
        hasilinstitusi.setText(institusi);
        hasilagama.setText(agama);
        hasiltua.setText(tua);
        hasilamt.setText(amt);
        hasilguru.setText(guru);

    }

    @Override    public void onClick(View v) {
        if (v == kembali) {
            Intent i = new Intent(kedua.this, MainActivity.class);
            startActivity(i);
        }
    }
}

selesai semoga  bermanfaat,Terimakasih

No comments:

Post a Comment

test

import 'dart:async' ; import 'package:flutter/material.dart' ; class MyBeginner extends StatefulWidget { var...