|
|
|
Android ขอความช่วยเหลือ เรื่อง Fragment กับ startactivity |
|
|
|
|
|
|
|
ช่วยดูให้หน่อยคับว่าผิดพลาดตรงไหน พอกดที่ ListView แรก แอปเด้งเลยคับ
Code (Android-Java)
package sips.project.test.zero.com.project;
import android.app.Fragment;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
// ภาวะเศรษฐกิจการค้า
public class EconomicTrade extends Fragment {
private ListView economic;
private String[] list = {"ดัชนีราคาผู้บริโภค",
"ดัชนีราคาผู้บริโภค จำแนกตามหมวดหมู่",
"ผลิตภัณฑ์มวลรวมจังหวัด",
"ภาวะการทำงานของประชากร",
"ภาวะเศรษฐกิจรายเดือน",
"บทวิเคราะห์"};
public EconomicTrade() {
}
@Override
public View onCreateView(LayoutInflater inflater, final ViewGroup container,
Bundle savedInstanceState) {
View View = inflater.inflate(R.layout.economic, container, false);
economic = (ListView) View.findViewById(R.id.listView);
ArrayAdapter<String> objAdapter = new ArrayAdapter<String>(this.getActivity(), android.R.layout.simple_list_item_1, list);
economic.setAdapter(objAdapter);
economic.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int position, long l) {
switch (position){
case 0:
Intent intent = new Intent(getActivity(),Gpp.class);
startActivity(intent);
break;
}
}
});
return View;
}
}
Tag : Mobile, Android, Mobile
|
ประวัติการแก้ไข 2015-03-22 14:38:05 2015-03-22 16:44:42
|
|
|
|
|
Date :
2015-03-22 14:36:33 |
By :
dangerfuk |
View :
979 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วคับ ตกม้าตายนี่เอง ขอถามีกข้อได้ไหมคับ
ถ้าผมต้องการให้มีปุ่มยอนกลับแบบใน Play Store ยังไงคับ
|
|
|
|
|
Date :
2015-03-23 12:27:50 |
By :
dangerfuk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|