android佈局不帶參數返回

来源:http://www.cnblogs.com/lxjhoney/archive/2017/02/25/6441788.html
-Advertisement-
Play Games

package com.example.lesson3_4; import java.util.ArrayList; import java.util.List; import android.app.Activity; import android.content.Intent; import a... ...


package com.example.lesson3_4;

import java.util.ArrayList;
import java.util.List;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.LinearLayout;
import android.widget.TextView;

public class MainActivity extends Activity {

    // <>裡面內容1.7必須 SDK>4.4  就可以不用寫

    List<Post> mList = new ArrayList<Post>();
    // 佈局中的組件
    LinearLayout titles;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initData();
        // 關鍵佈局
        titles = (LinearLayout) findViewById(R.id.titles);
        for (int i = 0; i < mList.size(); i++) {
            // 使用for創建多個TextView
            TextView tv = new TextView(this);
            // 分別設置值
            tv.setText(mList.get(i).getTitle());
            // 佈局可以動態的添加多個組件
            titles.addView(tv);
            final Post post = mList.get(i);
            tv.setOnClickListener(new OnClickListener() {

                @Override
                public void onClick(View v) {
                    // 為每一個TextView設置一個點擊事件
                    Intent intent = new Intent(MainActivity.this,
                            ContentActivity.class);
                    // 如果需要攜帶數據,可以通過intent的put方法
                    // Bundle
                    // 一個對象需要傳遞,必須實現序列化
                    // 內部類訪問局部變數必須final
                    intent.putExtra("post", post);
                    startActivity(intent);
                }
            });
        }

    }

    private void initData() {
        // 載入數據
        for (int i = 0; i < 3; i++) {
            mList.add(new Post("標題" + (i + 1), "內容" + (i + 1)));
        }
    }
}
package com.example.lesson3_4;

import java.io.Serializable;

public class Post implements Serializable {

    private static final long serialVersionUID = -2278908915637867413L;
    String title;
    String content;
    
    
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    public String getContent() {
        return content;
    }
    public void setContent(String content) {
        this.content = content;
    }
    public Post(String title, String content) {
        super();
        this.title = title;
        this.content = content;
    }
    @Override
    public String toString() {
        return "Post [title=" + title + ", content=" + content + "]";
    }
    
    
    
}
package com.example.lesson3_4;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageView;
import android.widget.TextView;

public class ContentActivity extends Activity {

    TextView title, content;
    ImageView iv_back;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_content);
        // 關鍵佈局組件
        title = (TextView) findViewById(R.id.title);
        content = (TextView) findViewById(R.id.content);
        iv_back = (ImageView) findViewById(R.id.iv_back);
        // 獲取前一個activity傳遞的數據
        Intent intent = getIntent();
        Post post = (Post) intent.getSerializableExtra("post");
        // 為佈局組件設置值
        title.setText(post.getTitle());
        content.setText(post.getContent());

        // 為ImageView設置點擊事件並且返回activity
        iv_back.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                finish();
            }
        });
    }

}
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:id="@+id/titles"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.lesson3_4.MainActivity" />
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="50dp" >

        <TextView
            android:id="@+id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:padding="5dp"
            android:text="標題"
            android:textSize="18sp" />

        <ImageView
            android:id="@+id/iv_back"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
            android:src="@drawable/arrow_left" />
    </RelativeLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:background="#CCC" />

    <TextView
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.lesson3_4"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="15"
        android:targetSdkVersion="21" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="com.example.lesson3_4.ContentActivity" >
        </activity>
    </application>

</manifest>

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 不用JavaScript也能實現閱讀進度條 看圖說話 直接上代碼 ...
  • ▓▓▓▓▓▓ 大致介紹 JavaScript的簡單數據類型包括:Undefined、Null、Boolean、Number、String。JavaScript中這五種基本數據類型不是對象,其他所有值都是對象。其中還有一些對象子類型,通常被稱為內置對象(引用類型) 1、Object 2、Array 3 ...
  • 1.window常用的屬性: ①history ②location 2.history對象的方法: ①back() ②forward() ③go() 3.location對象的屬性: ①host() ②hostname() ③href() 4.location對象的方法: ①reload() ②re ...
  • Xamarin.Forms研究了好一段時間了,最近一直在學習中,想嘗試一下調用其他的SDK,就如騰訊地圖SDK(申請容易)。 完成此次項目得感謝以下鏈接: http://www.cnblogs.com/jtang/p/4698496.html 其他文檔參考: 騰訊地圖SDK(安卓)文檔 這裡面有詳細 ...
  • 序言 開始開發應用號之前,先看看官方公佈的「小程式」教程吧!(以下內容來自微信官方公佈的「小程式」開髮指南) 本文檔將帶你一步步創建完成一個微信小程式,並可以在手機上體驗該小程式的實際效果。這個小程式的首頁將會顯示歡迎語以及當前用戶的微信頭像,點擊頭像,可以在新開的頁面中查看當前小程式的啟動日誌。 ...
  • public void httpget(String uri){ HttpURLConnection connection = null; FileOutputStream fos = null; File fie = new File("/sdcard/W_Local_Data/LiveVideo ...
  • 最近在實現一個類似淘寶中的評論列表的功能,其中要在列表中顯示評論圖,點擊圖片後顯示大圖進行查看,各家app幾乎都會有這樣的功能。 可以看到,一個體驗較好的查看大圖的基本功能有, 第一,左右滑動時切換圖片; 第二,雙擊或雙指縮放實現圖片的縮放; 第三,圖片放大時,滑動到邊緣繼續滑動時,切換圖片。 因為 ...
  • 入職安居客三年從工程師到Team Leader,見證了Android團隊一路走來的發展歷程。因此有心將這些記錄下來與大家分享,也算是對自己三年來一部分工作的總結。希望對大家有所幫助,更希望能得到大家寶貴的建議。 一、三網合併 三年前入職時安居客在業務上剛完成了三網合併(新房、二手房、好租和商業地產多 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...