編輯:關於android開發
1.String[] mStrings = { "aaaa", "bbbb", "cccc" };
2.ListView listView = (ListView) findViewById(R.id.list);
3. listView.setAdapter(new ArrayAdapter<String>(this,
4. Android.R.layout.simple_list_item_1, mStrings));
String[] mStrings = { "aaaa", "bbbb", "cccc" };
ListView listView = (ListView) findViewById(R.id.list);
listView.setAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, mStrings));
Java代碼
1.<ListView android:id="@+id/list" android:layout_width="fill_parent"
2. android:layout_height="wrap_content" android:background="@layout/list_corner_1"
3. android:layout_weight="1.0" />
<ListView android:id="@+id/list" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:background="@layout/list_corner_1"
android:layout_weight="1.0" />
list_corner_1.xml:
Java代碼
1.<?xml version="1.0" encoding="UTF-8"?>
2.<shape xmlns:android="http://schemas.android.com/apk/res/android"
3. android:shape="rectangle">
4. <gradient android:startColor="#CCCCFF" android:endColor="#99CCFF"
5. android:angle="90" />
6. <corners android:bottomRightRadius="10dp"
7. android:bottomLeftRadius="10dp" android:topLeftRadius="10dp"
8. android:topRightRadius="10dp" />
9.</shape>
Android 手機衛士--自定義組合控件構件布局結構,android構件由於設置中心條目中的布局都很類似,所以可以考慮使用自定義組合控件來簡化實現 本文地址:http
解析Service之你需要了解的一些東東,解析Service之東東何為Service Service,俗名服務。在Android系統中,Service與Activit
Android學習----自適應國際化語言,android---- 【前言】 自適應的知識與編程無關,關鍵在於配置文件的修改。自適應的內容包括:
Android 離線緩存的快速實現 離線緩存是指在有網絡的狀態下將從服務器獲取的網絡數據,如Json 數據緩存到本地,在斷網的狀態下啟動APP時讀取本地緩存數據顯示在