在這裡實現的功能是當點選listview的某一子項是,啟動乙個確認刪除相應記錄的子activity。
所以用到了帶返回值的intent
父介面和子介面的前台**
activity_main
<?xml version="1.0" encoding="utf-8"?>
xmlns:android=""
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_marginleft="10dp"
android:id="@+id/l1"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
listview>
linearlayout>
activity_new
<?xml version="1.0" encoding="utf-8"?>
xmlns:android=""
android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:tools=""
tools:context=".newactivity"
android:orientation="vertical">
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal">
android:id="@+id/t2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="刪除"
android:textsize="20dp"/>
android:id="@+id/t1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textsize="20dp"/>
android:id="@+id/t3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="的記錄嗎"
android:textsize="20dp"/>
linearlayout>
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal">
android:id="@+id/b1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="確定"/>
android:id="@+id/b2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="取消"/>
linearlayout>
linearlayout>
對應的後台**
import android.content.intent;
import android.os.bundle;
import android.view.view;
import android.widget.adapterview;
import android.widget.arrayadapter;
import android.widget.listview;
import j**a.util.arraylist;
import j**a.util.list;
public
class
mainactivity
extends
string a;//全域性變數記錄點選的哪一項
listview listview;
arrayadapteradapter;
protected
void
oncreate(bundle s**edinstancestate)
};listview.setonitemclicklistener(listviewlistener);
}protected
void
onactivityresult(int requestcode,int resultcode,intent data)
}}import android.content.intent;
import android.os.bundle;
import android.view.view;
import android.widget.button;
import android.widget.textview;
public
class
newactivity
extends
textview t1,t2,t3;
button b1,b2;
@override
protected
void
oncreate(bundle s**edinstancestate)
});b2.setonclicklistener(new view.onclicklistener()
});// t2.settext("123");
}}
資料結構 順序棧的實現(實驗3 1)
1 熟練掌棧的結構特點,掌握棧的順序儲存結構和實現。2 學會使用棧解決實際問題。二 實驗內容 1 自己確定結點的具體資料型別和問題規模,建立乙個順序棧,實現棧的壓棧和出棧操作。三 實驗步驟 1 依據實驗內容分別說明實驗程式中用到的資料型別的定義 template typename t class s...
php簡單實現傳送帶附件的郵件
下面是靜態html 帶附件的郵件傳送 sendmail.php檔案 from post from to post to subject post subje程式設計客棧ct body post body 定義分界線 boundary 345894369383 分界線是一串無規律的字元 設定heade...
簡單區塊鏈的實現(帶POW挖礦系統)
在it界,2018最火的熱詞相必就是區塊鏈了,c 和go是目前最適合區塊鏈開發的兩種語言,所以咱們學go的肯定得學一點區塊鏈的知識,但是區塊鏈涉及太多密碼學,金融學 p2p網路等知識了,從 切入呢,今天我們就從用go實現一條帶有模擬挖礦系統的簡單區塊鏈。三大模組 還是比較簡單清晰的,主要有三個模組,...