模拟新浪微博的随便看看栏目

做到如下图的效果:

首先对页面进行布局,在activity_sina_look.xml中的代码如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" 
    android:background="#FFFFFF">
   <ListView 
       android:id="@+id/listView"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"></ListView>
</RelativeLayout>


在list_item.xml这个新建的xml中的代码如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <!-- 左边图片部分 -->

    <ImageView
        android:id="@+id/photo"
        android:layout_width="48dp"
        android:layout_height="48dp" />
    <!-- 右边布局 -->

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <!-- 右上方 -->

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <!-- 用户名 -->

            <TextView
                android:id="@+id/name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" 
                android:textColor="#000000"/>
            <!-- 发布时间 -->

            <TextView
                android:id="@+id/time"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:gravity="right" 
                android:textColor="#000000"/>
        </LinearLayout>
        <!-- 右下方发布内容 -->

        <TextView
            android:id="@+id/content"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" 
            android:textColor="#000000"/>
    </LinearLayout>

</LinearLayout>

最后,再在主要的Activity(SinaLookActivity.java)中编写代码如下:

package com.bzu.sinalook.activity;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.Toast;
import android.support.v4.app.NavUtils;

public class SinaLookActivity extends Activity {
	private ListView listView;
	private List<Map<String, ?>> data;

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_sina_look);
		listView = (ListView) this.findViewById(R.id.listView);
		data = getData();
		SimpleAdapter adapter = new SimpleAdapter(this, data,
				R.layout.list_item, new String[] { "photo", "name", "time",
						"content" }, new int[] { R.id.photo, R.id.name,
						R.id.time, R.id.content });
		listView.setAdapter(adapter);
		//点击事件
		listView.setOnItemClickListener(new ListViewHandle());
	}
	/*
	 * 处理点击事件的方法
	 */
    private class ListViewHandle implements OnItemClickListener{

		public void onItemClick(AdapterView<?> adapter, View view, int position,
				long id) {
			Map<String, ?> item=data.get(position);
			Toast.makeText(getApplicationContext(),item.get("name").toString(), Toast.LENGTH_LONG).show();
		}
    	
    }
	private List<Map<String, ?>> getData() {
		List<Map<String, ?>> data = new ArrayList<Map<String, ?>>();
		Map<String, Object> item = new HashMap<String, Object>();
		item.put("photo", R.drawable.p1);
		item.put("name", "仰望星空");
		item.put("time", "1分钟前");
		item.put("content", "好看!");
		data.add(item);
		item = new HashMap<String, Object>();
		item.put("photo", R.drawable.p2);
		item.put("name", "星星");
		item.put("time", "5分钟前");
		item.put("content", "今天真高兴!");
		data.add(item);
		item = new HashMap<String, Object>();
		item.put("photo", R.drawable.p3);
		item.put("name", "星空");
		item.put("time", "6分钟前");
		item.put("content", "电影好看!");
		data.add(item);
		item = new HashMap<String, Object>();
		item.put("photo", R.drawable.p4);
		item.put("name", "仰望");
		item.put("time", "17分钟前");
		item.put("content", "今天真高兴!");
		data.add(item);
		item = new HashMap<String, Object>();
		item.put("photo", R.drawable.p5);
		item.put("name", "仰望星空001");
		item.put("time", "18分钟前");
		item.put("content", "电影好看!");
		data.add(item);
		item = new HashMap<String, Object>();
		item.put("photo", R.drawable.p6);
		item.put("name", "仰望星空002");
		item.put("time", "19分钟前");
		item.put("content", "好漂亮!");
		data.add(item);
		item = new HashMap<String, Object>();
		item.put("photo", R.drawable.p7);
		item.put("name", "仰望大海");
		item.put("time", "22分钟前");
		item.put("content", "电视剧好看!");
		data.add(item);
		item = new HashMap<String, Object>();
		item.put("photo", R.drawable.p8);
		item.put("name", "够黯然才自然");
		item.put("time", "24分钟前");
		item.put("content", "章节好看!");
		data.add(item);
		item = new HashMap<String, Object>();
		item.put("photo", R.drawable.p9);
		item.put("name", "仰望星空006");
		item.put("time", "26分钟前");
		item.put("content", "你好看!");
		data.add(item);
		item = new HashMap<String, Object>();
		item.put("photo", R.drawable.p10);
		item.put("name", "仰望星空009");
		item.put("time", "29分钟前");
		item.put("content", "企鹅好看!");
		data.add(item);
		return data;
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		getMenuInflater().inflate(R.menu.activity_sina_look, menu);
		return true;
	}

}



 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值