android.R.layout.simple_list_item_1是什么?
在我看到的所有示例中,他们在创建 ArrayAdapter 时仅使用“android.R.layout.simple_list_item_1”。 android.R.layout.simple_list_item_1是什么,它只是一个名为simple_list_item_1.xml的布局文件的名称还是数组适配器所需的TextView的id?
如何查看文件的内容或使用 res 文件夹中我自己的文件?
public class MyClass extends ListActivity {
private String[] titles = {"Test"};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mylayout);
setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, titles));
updateList();
}
}
In all the examples I've seen they just use "android.R.layout.simple_list_item_1" when creating an ArrayAdapter.
What is android.R.layout.simple_list_item_1,Is it just the name of a layout file called simple_list_item_1.xml or is it the id of the TextView required for the array adapter?
How do I see the content of the file or use my own file from my res folder?
public class MyClass extends ListActivity {
private String[] titles = {"Test"};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mylayout);
setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, titles));
updateList();
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
android.R.layout
包含 Android 操作系统用于显示各种项目的所有公开可用的布局。android.R.layout.simple_list_item_1
正如其名称所示,只是一个用于显示文本片段的简单布局。它使您不必在使用适配器时编写简单的布局,并且还可以轻松地在应用程序中为您提供系统的本机外观和主题。我已经包含了来自 GitHub 镜像的源代码android.git.kernel.org 存储库的 a>
android.R.layout
contains all of the publicly available layouts that the Android OS uses to display various items.android.R.layout.simple_list_item_1
is, as it's named, just a simple layout to display a snippet of text. It saves you from having to write simple layouts when using adapters and also affords you the native look and theme of the system in your application with minimal effort.I have included the source from the GitHub mirror of the android.git.kernel.org repo
Android API 中有一些内置布局 XML 文件
此图像中列出了
android.R.layout.simple_list_item_1 就是其中之一
它用于简单显示字符串
您可以使用您自己的布局而不是 android.R.layout.simple_list_item_1
例如如果您已经制作了布局 row.xml 那么您可以使用 as
There are some Inbuilt Layout XML files in Android API
and there are listed in this Image
android.R.layout.simple_list_item_1 is one of them
it is use for simple display of String
You can use Your Own Layout instead of android.R.layout.simple_list_item_1
for example If you have made a layout row.xml then you can use as
android.R.layout.simple_list_item_1 是一个内置布局资源,它显示单个字符串。
如果你想使用自己的布局文件,那么你可以使用
The android.R.layout.simple_list_item_1 is an inbuilt layout resource and it displays a single string.
If you want to use your own layout file then you can use