gpt4 book ai didi

android - 重用布局 XML 和背后的代码

转载 作者:可可西里 更新时间:2023-11-01 18:46:10 28 4
gpt4 key购买 nike

我正在尝试将几个按钮变成 Android 中的可重用组件。我已经成功地让 XML/UI 部分正常工作,但我无法弄清楚如何使它背后的代码在 Activity 之间可重用,除非在任何地方重新编码。我是 Android 的新手,如果这很明显,我深表歉意。

我已经多次查看这篇文章:Android layout Tricks 3 - Part 1但它似乎缺少一些文件,而且我没有足够的经验来重建它们。

我的主要布局的精简版:

  <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">

<WebView android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="375px"
android:layout_alignParentTop="true" />

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

</RelativeLayout>

然后是我的“组件”:

<?xml version="1.0" encoding="UTF-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center">

<ImageButton android:id="@+id/Button1"
android:layout_width="71px"
android:layout_height="wrap_content"
android:background="@drawable/button1"
android:layout_alignParentBottom="true" />


<ImageButton android:id="@+id/Button2"
android:layout_width="75px"
android:layout_height="wrap_content"
android:background="@drawable/button1"
android:layout_toRightOf = "@+id/Button1"
android:layout_alignParentBottom="true" />

</LinearLayout>
</merge>

如果您对我的 XML 有任何额外的批评,我也将不胜感激。

最佳答案

我所做的是制作一个包含所有通用代码的实际组件并直接使用它。这是组件类的简化版本:

public class NavigationBar extends LinearLayout {
public NavigationBar(Context context) {
super(context);
setupView(context);
hookupButtons(context);
}
public NavigationBar(Context context, AttributeSet attrs) {
super(context, attrs);
setupView(context);
hookupButtons(context);
}
private void setupView(Context context) {
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
// inflate whatever layout xml has your common xml
inflater.inflate(R.layout.navigation_bar, this);
}
}

在我的类里面,hookupButtons 完全按照您的想法行事。 :-)

然后我所有的布局 xml 看起来都与此类似:

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.dragonglobal.dragonplayer.ui.widgets.NavigationBar
android:id="@+id/nav_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ListView
android:id="@+id/list_of_playlists"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>

在每个 Activity 的 onCreate 中我也有这个(你可以适应任何你需要的):

NavigationBar navbar = (NavigationBar) findViewById(R.id.nav_bar);
navbar.setText("Playlists");

当然,您需要添加所需的任何导入内容。

编辑

只是澄清一下:我的 navigation_bar.xml 看起来与您的非常相似,只是我的中没有合并行。

编辑 2

这是 hookupButtons 的样子。我只展示了一个按钮,但你应该明白了。

private void hookupButtons(final Context context) {
ImageButton playlistsBtn = (ImageButton)findViewById(R.id.nav_playlists_btn);
if (context instanceof PlaylistsActivity) {
playlistsBtn.setBackgroundDrawable(getResources().getDrawable(R.drawable.nav_playlists_active));
} else {
playlistsBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(context, PlaylistsActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
context.startActivity(i);
}
});
}
}

关于android - 重用布局 XML 和背后的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3206643/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com