์๋๋ก์ด๋ ๋ฒํผ ํด๋ฆญ ์ด๋ฒคํธ
xml์ฝ๋
<Button
android:id="@+id/btn_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="150dp"
android:text="์๋ฌด์ผ๋ ์ผ์ด๋์ง ์๋ ๋ฒํผ">
</Button>
๋ค์๊ณผ ๊ฐ์ด xml์์ ๋ฒํผ์ ๋ง๋ค๋ฉด ์ฌ์ง๊ณผ ๊ฐ์ด ๋ฒํผ์ด ์๊น๋๋ค.
ํ์ง๋ง ๋ฒํผ์ ๋๋ ค๋ ์๋ฌด์ผ๋ ์ผ์ด๋์ง ์์ต๋๋ค.
์์ง JAVA์ฝ๋๋ฅผ ์ ๋ ฅํ์ง ์์๊ธฐ ๋๋ฌธ์ด๋ค.
JAVA์ฝ๋
package com.example.helloandroid;
import ...
public class MainActivity extends AppCompatActivity {
Button button1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
button1 = (Button) findViewById(R.id.btn_1);
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent mlntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://naver.com"));
startActivity(mlntent);
}
});
}
}
๋จผ์
Button button1; // ๋ฒํผ ๋ณ์์ ์ธ
button1 = (Button) findViewById(R.id.btn_1); // ๋ณ์์ xmlํ์ผ์ ๋ฒํผ์ ๋์
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent mlntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://naver.com"));
startActivity(mlntent);
} // ๋ฐ์ค๋ถ๋ถ์ ๋ฒํผ๋๋ฅด๋ฉด ์๋ํ ์ฝ๋ ๋์
์ด๋ ๊ฒ ์ฝ๋๋ฅผ ์งค ๊ฒฝ์ฐ ๋ฒํผ์ ๋๋ฅด๋ฉด ๋ค์ด๋ฒ๋ก ์ด๋!
๋ฐ์ค๋ถ๋ถ์ ๋ค์ํ๊ฒ ๋ณํ๊ฐ๋ฅ
ex) ๋๋ด๊ธฐ
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
ex) ์ ํ๊ฑธ๊ธฐ
button2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
button2.setBackgroundColor(Color.GREEN);
Intent mlntent = new Intent(Intent.ACTION_VIEW,Uri.parse("tel:/010-xxxx-yyyy"));
startActivity(mlntent);
}
'๊ฐ๋ฐ ํ์์บก์ > Java' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Android Studio] wrap_content / match_parent ์ฐจ์ด (0) | 2020.04.26 |
---|