Студопедия
Случайная страница | ТОМ-1 | ТОМ-2 | ТОМ-3
АрхитектураБиологияГеографияДругоеИностранные языки
ИнформатикаИсторияКультураЛитератураМатематика
МедицинаМеханикаОбразованиеОхрана трудаПедагогика
ПолитикаПравоПрограммированиеПсихологияРелигия
СоциологияСпортСтроительствоФизикаФилософия
ФинансыХимияЭкологияЭкономикаЭлектроника

package com.example.sasha;



package com.example.sasha;

 

import android.app.Activity;

import android.os.Bundle;

import android.view.Menu;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

import android.widget.TextView;

 

public class MainActivity extends Activity {

 

TextView textovepole;

Button knopka;

 

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

 

final TextView textovepole = (TextView)findViewById(R.id.textView1);

Button knopka = (Button)findViewById(R.id.button1);

 

OnClickListener Zaharchuk = new OnClickListener(){

 

@Override

public void onClick(View arg0) {

// TODO Auto-generated method stub

textovepole.setText("Захарчук Олександр Сергійович");

}

 

};

 

knopka.setOnClickListener(Zaharchuk);

}

 

 

@Override

public boolean onCreateOptionsMenu(Menu menu) {

// Inflate the menu; this adds items to the action bar if it is present.

getMenuInflater().inflate(R.menu.main, menu);

return true;

}

 

}

 

<RelativeLayout xmlns:android= "http://schemas.android.com/apk/res/android"

xmlns:tools= "http://schemas.android.com/tools"

android:layout_width= "match_parent"

android:layout_height= "match_parent"

android:paddingBottom= "@dimen/activity_vertical_margin"

android:paddingLeft= "@dimen/activity_horizontal_margin"

android:paddingRight= "@dimen/activity_horizontal_margin"

android:paddingTop= "@dimen/activity_vertical_margin"

tools:context= ".MainActivity" >

 

<TextView

android:id= "@+id/textView1"

android:layout_width= "fill_parent"

android:layout_height= "wrap_content" />

 

<Button

android:id= "@+id/button1"

android:layout_width= "fill_parent"

android:layout_height= "wrap_content"

android:layout_alignLeft= "@+id/textView1"

android:layout_below= "@+id/textView1"

android:layout_marginTop= "48dp"

android:text= " Виведіть ПІБ!" />

 

</RelativeLayout>


Дата добавления: 2015-11-04; просмотров: 14 | Нарушение авторских прав




<== предыдущая лекция | следующая лекция ==>
 | import java.awt.event.ActionListener;

mybiblioteka.su - 2015-2024 год. (0.006 сек.)