Android studio 入門第二天《第一行程式碼》
阿新 • • 發佈:2019-02-13
一,建立和載入佈局
app/src/main/res/new/directory,建立一個名為layout的目錄,然後右擊/layout resource file/
新增按鈕程式碼
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <Button android:id="@+id/button_1"//在xml中定義一個id用+。如果是引用則無需用+ android:layout_width="match_parent" android:layout_height="match_parent" android:text="Button_1" /> </LinearLayout>
firstactivity中在onCreate()中新增
public class firstactivity extends AppCompatActivity {
@Overrideprotected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.first_layout);
}
}
二
在AndroidManifest檔案中註冊
需要配置主活動詳情參考《第一行程式碼》,在<activity>中加入<intent-filter>標籤
修改後原始碼
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="activitytest.example.com.activitytest"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".firstactivity" android:label="This is firstactivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
三
在活動中使用toast
首先要定義個出發點就用先前的按鈕在onCreate()方法新增程式碼
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.first_layout);
Button button1 = (Button) findViewById(R.id.button_1);//獲取佈局檔案中定義的元素,轉化為一個BUtton物件
button1.setOnClickListener(new View.OnClickListener(){//註冊一個監聽器
@Override
public void onClick(View v){
Toast.makeText(firstactivity.this,"You clicked Button 1",
Toast.LENGTH_SHORT).show();//第一個引數就是Toast要求的上下文,第二個引數是現實的內容,第三個引數是顯示的時長
}
});
}
使用menu
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/add_item"
android:title="ADD"/>
<item
android:id="@+id/remove_item"//具體標籤
android:title="REMOVE"/>
</menu>
四銷燬活動
五使用顯隱intent
firstactivity程式碼(三,四,五)
package activitytest.example.com.activitytest;
import android.content.Intent;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class firstactivity extends AppCompatActivity {
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// TODO Auto-generated method stub
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.first_layout);
Button button1 = (Button) findViewById(R.id.button_1);//獲取佈局檔案中定義的元素,轉化為一個BUtton物件
button1.setOnClickListener(new View.OnClickListener(){//註冊一個監聽器
@Override
public void onClick(View v){
Toast.makeText(firstactivity.this,"You clicked Button 1",
// finish();//銷燬活動
Toast.LENGTH_SHORT).show();//第一個引數就是Toast要求的上下文,第二個引數是現實的內容,第三個引數是顯示的時長
//Intent intent = new Intent(firstactivity.this,SecondActivity.class);//首先我們構建一個Intent,第一個作為上下文,第二幕作為目標活動(顯式intent)
// Intent intent= new Intent(Intent.ACTION_VIEW);
//intent.addCategory("activitytest.example.com.activitytest.MY_CATEGORY");
//intent.setData(Uri.parse("http://www.baidu.com"));
//startActivity(intent);//在第一個的基礎上開啟第二個,執行這個intent
}
});
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()){
case R.id.add_item:
Toast.makeText(this, "you clicked ADD", Toast.LENGTH_SHORT).show();
break;
case R.id.remove_item:
Toast.makeText(this, "you clicked REMOVE", Toast.LENGTH_SHORT).show();
break;
default:
}
return true;
}}