91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android開發之ListView的簡單用法及定制ListView界面操作示例

發布時間:2020-09-19 20:09:38 來源:腳本之家 閱讀:147 作者:水中魚之1999 欄目:移動開發

本文實例講述了Android開發之ListView的簡單用法及定制ListView界面操作。分享給大家供大家參考,具體如下:

效果:

Android開發之ListView的簡單用法及定制ListView界面操作示例

如何從獲得listview上item的內容

詳見:https://www.jb51.net/article/158000.htm

中遇到的問題部分。

布局實現:

  • 有個listview顯示
  • 一個edit和button發送
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context=".MainActivity"
  android:orientation="vertical">
    <!--使用紅色得分割條-->
    <ListView
      android:id="@+id/list1"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:divider="#f00"
      android:dividerHeight="2px"
      android:headerDividersEnabled="false">
    </ListView>
    <!--用于存放和發送新的信息-->
    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_alignParentBottom="true"
      android:orientation="vertical"
      android:background="#ffffff">
        <!--存放新的信息-->
        <!--設置最大行數-->
        <EditText
          android:id="@+id/ifo"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:hint="請輸入內容"
          android:textColorHint="#c0c0c0"
          android:maxLines="6"/>
        <!--點擊發送消息-->
        <Button
          android:id="@+id/send"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="發送"
          android:textSize="16sp" />
    </LinearLayout>
</RelativeLayout>

添加方法:

//此處由于只有String一條數據,所以只用了ArrayAdapter
//如果多項信息建議用BaseAdapter
public class MainActivity extends AppCompatActivity {
  //當前消息列表
  ListView list01 ;
  //消息發送欄
  EditText editText01 ;
  //消息發送按鈕
  Button button01_send ;
  //記錄數組長度
  int arr_num = 0;
  //定義一個數組
  String[] arr1 = new String[arr_num];
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    list01 = (ListView) findViewById(R.id.list1);
    editText01 = (EditText) findViewById(R.id.ifo);
    button01_send = (Button) findViewById(R.id.send);
    button01_send.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        if ( ! editText01.getText().toString().equals("") ){
          String[] arr_new = new String[++arr_num];
//        System.arraycopy(arr1,0,arr_new,0, arr1.length);
          for (int j = 0 ; j < arr1.length; j++){
            arr_new[j] = arr1[j];
          }
          arr_new[arr_num-1] = editText01.getText().toString();
          arr1 = arr_new;
          ArrayAdapter adapter1;
          adapter1 = new ArrayAdapter<>(MainActivity.this,R.layout.array_list,arr_new);
          list01.setAdapter(adapter1);
          editText01.setText("");
        }else {
          Toast.makeText(MainActivity.this,"請輸入后再發送",Toast.LENGTH_SHORT).show();
        }
      }
    });
  }
}

帶圖片Demo:

Android開發之ListView的簡單用法及定制ListView界面操作示例

Demo下載地址:點擊此處本站下載

更多關于Android相關內容感興趣的讀者可查看本站專題:《Android控件用法總結》、《Android開發入門與進階教程》、《Android視圖View技巧總結》、《Android編程之activity操作技巧總結》、《Android數據庫操作技巧總結》及《Android資源操作技巧匯總》

希望本文所述對大家Android程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

杭锦后旗| 朝阳市| 兰西县| 长沙市| 沂源县| 阜新市| 葵青区| 屏山县| 永定县| 黄大仙区| 济宁市| 三门县| 贵定县| 双鸭山市| 吴忠市| 阜平县| 武义县| 射洪县| 曲靖市| 白银市| 安新县| 开化县| 滦南县| 开鲁县| 阿巴嘎旗| 沁水县| 呼图壁县| 尼玛县| 蒙山县| 阳江市| 大洼县| 报价| 曲靖市| 新泰市| 察哈| 凭祥市| 孝义市| 北流市| 台东县| 怀远县| 嵩明县|