亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Android Studio 如何創建自定義控件?

發布時間:2020-06-23 15:35:23 來源:億速云 閱讀:295 作者:清晨 欄目:移動開發

不懂Android Studio 如何創建自定義控件??其實想解決這個問題也不難,下面讓小編帶著大家一起學習怎么去解決,希望大家閱讀完這篇文章后大所收獲。

我們知道,當系統控件并不能滿足我們的需求時,我們就需要來創建自定義控件,主要有兩種方法

(1)引入布局

下面來自定義一個控件,iPhone的標題欄,創建一個標題欄并不是什么難事,加入兩個button一個TextView就行了,可是在我們的應用中,有很多頁面都是需要這樣的標題欄,我們不可能每個活動都寫一遍布局,這個時候我們就可以用引用布局的方法,新建一個title.xml

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:background="#817D7D"
  >

  <Button
    android:id="@+id/title_back"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_margin="5dp"
    android:text="back"
    android:textColor="#fff"/>

  <TextView
    android:id="@+id/title_text"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_weight="1"
    android:gravity="center"
    android:textColor="#c0c0c0"
    android:textSize="24sp"
    android:text="title text" />

  <Button
    android:id="@+id/title_edit"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_margin="5dp"
    android:textColor="#fff"
    android:text="edit" />
</LinearLayout>

現在標題欄已經寫好了,接下來就要在程序中使用,修改activity_main.xml

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
 >

  <include layout="@layout/title"/>

</LinearLayout>

我們只要通過一句include語句引進來就行了

 <include layout="@layout/title"/>

最后我們需要在MainActivity中將系統自帶的標題欄屏蔽

package com.example.ch03;

import android.drm.DrmStore;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //屏蔽系統自帶狀態欄
    ActionBar actionBar = getSupportActionBar();
    if(actionBar != null){
      actionBar.hide();
    }
  }
}

最后來看一下效果

Android Studio 如何創建自定義控件?

(2)注冊點擊事件

在上面我們看到,每個界面的返回按鈕功能都是一樣的,即銷毀當前活動,我們不可能在每個活動中都重新注冊,所以使用自定義控件的方式來解決
新建TitleLayout,成為標題欄控件

public class TitleLayout extends LinearLayout {
			public TitleLayout(Context context, AttributeSet attrs){
 				 super(context,attrs);
  			 LayoutInflater.from(context).inflate(R.layout.title,this);

我們重寫了LinearLayout中帶參數的構造函數,引入TitleLayout控件就會調用這個構造函數,然后對標題欄進行動態加載,就需要借助LayoutInflater實現。通過LayoutInflater的from方法構建一個LayoutInflater對象,調用inflate()方法動態加載一個布局文件

然后在布局文件中添加自定義控件,修改activity_main.xml

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
 >
<com.example.ch03.TitleLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"/>

</LinearLayout>

重新運行一下,效果是一樣的

下面來給按鈕注冊點擊事件,修改TitleLayout中的代碼

package com.example.ch03;
import android.app.Activity;
import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.Toast;
public class TitleLayout extends LinearLayout {
public TitleLayout(Context context, AttributeSet attrs){
  super(context,attrs);
  LayoutInflater.from(context).inflate(R.layout.title,this);

  Button titleBack = findViewById(R.id.title_back);
  Button titleEdit = findViewById(R.id.title_edit);
  titleBack.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {

      ((Activity) getContext()).finish();
    }
  });
  titleEdit.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
      Toast.makeText(getContext(),"You click edit button",
          Toast.LENGTH_LONG).show();
    }
  });
}

}

重新運行一下,然后點擊edit按鈕

Android Studio 如何創建自定義控件?

感謝你能夠認真閱讀完這篇文章,希望小編分享Android Studio 如何創建自定義控件?內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節

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

AI

屯留县| 松潘县| 凤翔县| 盖州市| 衡水市| 巴中市| 桐庐县| 石棉县| 南昌市| 宁强县| 靖江市| 通渭县| 诏安县| 山阳县| 灵宝市| 彰武县| 黄梅县| 南华县| 东乡族自治县| 新巴尔虎右旗| 马公市| 涿州市| 多伦县| 阳城县| 宁海县| 古交市| 南宫市| 东乡| 海晏县| 衡阳市| 乐陵市| 沾化县| 东海县| 保亭| 临邑县| 高青县| 阳城县| 新津县| 句容市| 英吉沙县| 阿瓦提县|