我是Android开发的新手 是否可以使用自定义属性更改包含布局内的视图?
我是这样的意思:
这是my_layout
xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listItem"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/userImage"
android:layout_width="50dp"
android:layout_height="50dp"
android:src="..." />
<!-- this src attribute can be overrided using my own attribute in the iclude tage -->
<TextView
android:id="@+id/userName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="..." />
<!-- this text attribute can be overrided using my own attribute in the iclude tage -->
</LinearLayout>
这就是我想将my_layout
包含在活动布局中的方式:
<include layout="@layout/my_layout" userName="@string/userName1" userImage="@drawable/userImage1"/>
userName
和userImage
会覆盖android:text
和android:src
属性的值。
我已经阅读了Data Binding,但我的意思是不使用任何Java类。我只需要在my_layout
中将变量定义为数据标记,其type
值引用@string/
或@drawable/
即可获得文字或图片。
有可能吗?
答案 0 :(得分:2)
根据您的说明,您希望将userName1
和userImage1
发布到my_layout
中的视图。你做不到。您使用自定义视图的方式是错误的。标签包含&#39;也不是自定义标签。
您可以使用自定义属性,请点击以下示例:
<com.amscf.view.InviteItemView
android:id="@+id/invite_item_instagram"
android:layout_width="match_parent"
android:layout_height="80dp"
android:background="@drawable/item_color"
android:paddingBottom="10dp"
android:paddingTop="10dp"
app:appicon="@drawable/icon_app_instagram"
app:btntext=""
app:coindesc="Post a invitation"
app:cointext="Share to Instagram"
app:showweek="false"/>
在视图InviteItemView
中,您可以使用以下代码获取属性appIcon
,btnText
:
TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.invite_item_view);
int refId = typedArray.getResourceId(R.styleable.invite_item_view_appicon, R.mipmap.ic_launcher);
String btnText = typedArray.getString(R.styleable.invite_item_view_btntext);
您将获得refId
和btnText
。
将以下代码添加到attrs.xml
,这是invite_item_view
<declare-styleable name="invite_item_view">
<attr name="appicon" format="reference"/>
<attr name="cointext" format="string"/>
<attr name="coindesc" format="string"/>
<attr name="btntext" format="string"/>
<attr name="showweek" format="boolean"/>
</declare-styleable>
答案 1 :(得分:1)
<inlcude />
标记用于帮助您重复使用不同页面中的布局。一个例子是定义一个自定义ToolBar并在Activities,Fragment中重用。
现在你可以像你提到的那样添加这个自定义标签,但是你可以直接在代码后面声明,只是没有DataBinding:
例如,使用此toolbar.xml
:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay">
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textColor="@color/colorWhite" />
</android.support.v7.widget.Toolbar>
并在activity_main.xml
中,您有:
<include layout="@layout/toolbar"/>
在MainActivity.java
中,您可以定义:
private TextView title = (TextView) findViewById(R.id.toolbar_title);
title.setText("Whatever you want");