Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> [Android新手學習筆記22]-如何自定義控件

[Android新手學習筆記22]-如何自定義控件

編輯:關於Android編程

1.引入布局文件

右鍵res/layout文件夾,創建Layout Resource File,命名為title。配置代碼如下:

android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="60dp"
android:background="#00ff00">

android:id="@+id/back_button"
android:text="返回"
android:textSize="30sp"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="60dp" />

android:id="@+id/text_view"
android:text="標題"
android:textSize="30sp"
android:layout_gravity="center"
android:gravity="center"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="60dp" />

android:id="@+id/edit_button"
android:text="編輯"
android:textSize="30sp"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="60dp" />

android:layout_gravity控制控件內容排列方式。

android:gravity控制控件排列方式。

然後在通過標簽引入,代碼如下:

xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

在引用控件的Activity中,去掉標題欄,代碼如下:

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();
}
}
}
 

2.添加方法

修改引入布局文件,代碼如下:

xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

android:layout_width="match_parent"
android:layout_height="wrap_content" />

創建TitleLayout類,繼承LinearLayout類,在這個類裡面實現控件事件,代碼如下:

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

Button backButton = (Button) findViewById(R.id.back_button);
Button editButton = (Button) findViewById(R.id.edit_button);

backButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
((Activity) getContext()).finish();
}
});

editButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(getContext(), "你點擊了編輯按鈕", Toast.LENGTH_SHORT).show();
}
});
}
}
 
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved