Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> 安卓開發中自定義ListView圓角實例

安卓開發中自定義ListView圓角實例

編輯:關於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>

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved