使用自定义属性在 <include> 标签中使用的布局内编辑视图(TextView / ImageView)
Edit a View (TextView / ImageView) inside a layout used in <include> tag using custom attribute
我是 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
添加到 activity 布局的方式:
<include layout="@layout/my_layout" userName="@string/userName1" userImage="@drawable/userImage1"/>
userName
和 userImage
覆盖 android:text
和 android:src
属性的值。
我读过 Data Binding 但我的意思是不使用任何 Java class。我只需要在 my_layout
中的数据标签中定义一个变量,其中 type
值引用 @string/
或 @drawable/
来获取文本或图片。
可能吗?
根据您的描述,您希望post userName1
和 userImage1
到 my_layout
中的视图。你做不到。而且您使用自定义视图的方式是错误的。标签 'include' 也不是自定义标签。
您可以按照此示例使用自定义属性:
<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>
<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");
我是 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
添加到 activity 布局的方式:
<include layout="@layout/my_layout" userName="@string/userName1" userImage="@drawable/userImage1"/>
userName
和 userImage
覆盖 android:text
和 android:src
属性的值。
我读过 Data Binding 但我的意思是不使用任何 Java class。我只需要在 my_layout
中的数据标签中定义一个变量,其中 type
值引用 @string/
或 @drawable/
来获取文本或图片。
可能吗?
根据您的描述,您希望post userName1
和 userImage1
到 my_layout
中的视图。你做不到。而且您使用自定义视图的方式是错误的。标签 'include' 也不是自定义标签。
您可以按照此示例使用自定义属性:
<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>
<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");