Android開發日記(一)

來源:互聯網
上載者:User

標籤:

實現點擊一個圖片按鈕跳轉到一個動作
ImageViewSchoolCard = (ImageView) view.findViewById(R.id.ImageViewLostThings);
ImageViewSchoolCard.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v){
Intent intent = new Intent();
// intent.putExtra("index", index);
intent.setClass(getActivity(), shiwuzhaoling.class);
startActivityForResult(intent, 0);
}
});

實現一個動作跳轉到一個XML
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.postmain);

添加一個返回按鈕
getActionBar().setDisplayHomeAsUpEnabled(true);

新添加動作要到AndroidManifest.xml註冊

跳轉到一個fragment
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.
beginTransaction();
Post2Fragment fragment = new Post2Fragment();
//加到Activity中
fragmentTransaction.add(R.id.fragment_content,fragment);
//加到後台堆棧中,有下一句代碼的話,點擊返回按鈕是退到Activity介面,沒有的話,直接退出Activity
//後面的參數是此Fragment的Tag。相當於id
//記住提交
fragmentTransaction.commit();

伺服器段 修改cs檔案 當添加一個cs檔案時要在DataInfo.edmx上添加一個類
修改後 記得產生 發布

Android開發日記(一)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.