- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是Android开发的初学者。
我知道,这个标题似乎很难理解,但请让我解释一下
我的应用是我所在城市的公交线路指南,它包含两个不同的 View :
ListView
,所有公交线路都以数字形式显示,顺序简单,什么都没有特别的。它恰好包含 100 个项目。 NavigationDrawer
具有相同的线条,但按区域(北、南、东、东南)分隔每个 NavigationDrawer
菜单都指向一个具有多个按钮和总线的 Activity,但只有那些属于 X 区(例如东区)的 Activity
这里是ActivityEast的布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="6dp"
android:paddingBottom="6dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_leste" tools:context="com.lennoardsilva.teresinabus.Leste">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/scrollView2"
android:layout_alignParentTop="true">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_245"
android:id="@+id/botao_l_245" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_401"
android:id="@+id/botao_l_401" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_402"
android:id="@+id/botao_l_402" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_403"
android:id="@+id/botao_l_403" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_404"
android:id="@+id/botao_l_404" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_405"
android:id="@+id/botao_l_405" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_501"
android:id="@+id/botao_l_501" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_502"
android:id="@+id/botao_l_502" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_503"
android:id="@+id/botao_l_503" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_512"
android:id="@+id/botao_l_512" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_513"
android:id="@+id/botao_l_513" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_518"
android:id="@+id/botao_l_518" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_520"
android:id="@+id/botao_l_520" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_521"
android:id="@+id/botao_l_521" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_522"
android:id="@+id/botao_l_522" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_523"
android:id="@+id/botao_l_523" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/l_610"
android:id="@+id/botao_l_610" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/carregar_mais"
android:id="@+id/botao_carregar_leste"
android:background="@color/cinza_escuro"
android:textColor="@color/branco"
android:textStyle="bold"
android:onClick="leste_2"
android:visibility="gone" />
</LinearLayout>
</ScrollView>
</RelativeLayout>
<!-- As a told you, a lot of buttons -->
这里是LineListFragment:
package com.lennoardsilva.teresinabus;
import android.app.Activity;
import android.os.Bundle;
import android.support.v4.app.ListFragment;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import com.lennoardsilva.teresinabus.dummy.DummyContent;
public class LinhaListFragment extends ListFragment {
private static final String STATE_ACTIVATED_POSITION = "activated_position";
private Callbacks mCallbacks = sDummyCallbacks;
private int mActivatedPosition = ListView.INVALID_POSITION;
public interface Callbacks {
public void onItemSelected(String id);
}
private static Callbacks sDummyCallbacks = new Callbacks() {
@Override
public void onItemSelected(String id) {
}
};
public LinhaListFragment() {
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setListAdapter(new ArrayAdapter<DummyContent.DummyItem>(getActivity(),android.R.layout.simple_list_item_activated_1, android.R.id.text1, DummyContent.ITEMS));
}
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
if (savedInstanceState != null && savedInstanceState.containsKey(STATE_ACTIVATED_POSITION)) {
setActivatedPosition(savedInstanceState.getInt(STATE_ACTIVATED_POSITION));
}
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
// Activities containing this fragment must implement its callbacks.
if (!(activity instanceof Callbacks)) {
throw new IllegalStateException("Activity must implement fragment's callbacks.");
}
mCallbacks = (Callbacks) activity;
}
@Override
public void onDetach() {
super.onDetach();
mCallbacks = sDummyCallbacks;
}
@Override
public void onListItemClick(ListView listView, View view, int position, long id) {
super.onListItemClick(listView, view, position, id);
mCallbacks.onItemSelected(DummyContent.ITEMS.get(position).id);
}
@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
if (mActivatedPosition != ListView.INVALID_POSITION) {
outState.putInt(STATE_ACTIVATED_POSITION, mActivatedPosition);
}
}
public void setActivateOnItemClick(boolean activateOnItemClick) {
getListView().setChoiceMode(activateOnItemClick ? ListView.CHOICE_MODE_SINGLE : ListView.CHOICE_MODE_NONE);
}
private void setActivatedPosition(int position) {
if (position == ListView.INVALID_POSITION) {
getListView().setItemChecked(mActivatedPosition, false);
} else {
getListView().setItemChecked(position, true);
}
mActivatedPosition = position;
}
}
这里是 Line ListActivity:
public class LinhaListActivity extends AppCompatActivity
implements LinhaListFragment.Callbacks {
private boolean mTwoPane;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_linha_app_bar);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
toolbar.setTitle(getTitle());
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
DialogFragment dialog = new FragmentoDatabase();
dialog.show(getFragmentManager(), "FragmentoDatabaseTag");
}
});
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
if (findViewById(R.id.linha_detail_container) != null) {
mTwoPane = true;
((LinhaListFragment) getSupportFragmentManager()
.findFragmentById(R.id.linha_list))
.setActivateOnItemClick(true);
}
// TODO: If exposing deep links into your app, handle intents here.
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == android.R.id.home) {
NavUtils.navigateUpFromSameTask(this);
return true;
}
return super.onOptionsItemSelected(item);
}
@Override
public void onItemSelected(String id) {
if (mTwoPane) {
Bundle arguments = new Bundle();
arguments.putString(LinhaDetailFragment.ARG_ITEM_ID, id);
LinhaDetailFragment fragment = new LinhaDetailFragment();
fragment.setArguments(arguments);
getSupportFragmentManager().beginTransaction().replace(R.id.linha_detail_container, fragment).commit();
} else {
Intent detailIntent = new Intent(this, LinhaDetailActivity.class);
detailIntent.putExtra(LinhaDetailFragment.ARG_ITEM_ID, id);
startActivity(detailIntent);
}
}
}
这里是虚拟内容:
public class DummyContent {
public static List<DummyItem> ITEMS = new ArrayList<DummyItem>();
public static Map<String, DummyItem> ITEM_MAP = new HashMap<String, DummyItem>();
static {
addItem(new DummyItem("1", "004 - LINE NAME", "Line 004 Details"));
addItem(new DummyItem("2", "005 - LINE NAME", "Line 005 Details"));
addItem(new DummyItem("3", "And so on....", "Details"));
addItem(new DummyItem("100", "100 - LINE NAME", "Line 100 Details"));
}
private static void addItem(DummyItem item) {
ITEMS.add(item);
ITEM_MAP.put(item.id, item);
}
public static class DummyItem {
public String id;
public String content;
public String details;
public DummyItem(String id, String content, String details) {
this.id = id;
this.content = content;
this.details = details;
}
@Override
public String toString() {
return content;
}
}
}
问题:如何让其中一个按钮启动对应的ListView的ItemDetailsActivity?
示例:在 ActivityEast 中我有 botao_l_501,在 ListView
中它对应于 item 33。我希望 botao_l_501 开始显示 ListView
的第 33 项的详细信息。 (模板主/详细流程,谷歌)
你可能想知道的事情:
最佳答案
因此,基本上您需要与区域 Activity (即 ActivityEast
)共享 LinhaListFragment
中的适配器信息。问题是,在 LinhaListFragment
中,您有一个 Adapter
,因为您使用的是 ListFragment
,但在 ActivityEast
中你有一个带有一堆 Buttons
的 LinearLayout
,那么我们如何将这两个东西映射到一起工作呢?
第一个解决方案(Hack & Nasty)
在您的 DummyContent
类中,当您添加项目时,还要添加对 Button
id 的引用:
static {
addItem(new DummyItem(R.id.idbotao_l_001, "1", "004 - LINE NAME", "Line 004 Details"));
addItem(new DummyItem(R.id.idbotao_l_002, "2", "005 - LINE NAME", "Line 005 Details"));
addItem(new DummyItem(R.id.idbotao_l_033, "33", "033 - LINE NAME", "Details"));
addItem(new DummyItem(R.id.idbotao_l_100, "100", "100 - LINE NAME", "Line 100 Details"));
}
然后在每个按钮的 onClick 中你可以做这样的事情:
@Override
public void onClick(View view) {
for (DummyItem item : DummyContents.ITEMS) {
if (item.resourceId == view.getId()) {
//Start the item detail activity
break;
}
}
}
我不知道您是否正在使用 DummyContent
类,因为您的内容永远不会改变,如果您正在使用它,因为您只是在测试代码。如果将来您要从 Web 服务中获取该数据,那么此解决方案将毫无用处。
第二种解决方案(清洁)
首先,如果你真的想遵循主/细节规范,那么你应该只将 Activity 用作 fragment 持有者,因此像 ActivityEast
这样的区域 Activity 不应该存在,你也不应该LinearLayout
带有一堆按钮。将其替换为包含 ZoneFragment
和 RecyclerView
的 ZoneActivity
(没有人使用 ListView
或 ListFragment
了)RecyclerView
应该设置为您在启动 ZoneActivity< 时在
LinhaListFragment
中使用的相同 Adapter
/code> zone id 由 Intent
的 bundle 发送,id 通过 ZoneFragment
并最终设置到 Adapter
。 Adapter
包含过滤/显示每个区域的线路的逻辑。区域 ID 参数应该不是必需的,因为 ListFragment
它也将使用相同的适配器并且没有区域 ID。
既然你说你刚刚开始 android 开发,那么有一些技巧可以帮助你:
不要使用
ListView
,而是使用 RecyclerView
。
永远不要像在
p>ActivityEast
中做的那样,如果您要使用 RecyclerView
的那么多按钮,即使您的数据是静态的也是如此。
没有人再使用像 ListFragment
这样的东西了。如果您从您附加到该类的类扩展,请尝试从您自己的基类或非常基本的基类(如 Fragment 和 Activity)继承。
尝试使用不分隔代码的区域。例如:
公共(public)类 MyFragment 扩展 fragment {
//region Variables
private int myField;
//endregion
//region Fragment lifecycle
protected void onCreate(Bundle saveInstance) {
//...
}
//endregion
}
然后您可以折叠它们并以更舒适的方式阅读代码。
不好
Intent intent = new Intent(context, MyActivity.class);
intent.putExtra("zoneId",myZoneId);
startActivity(intent);
好
startActivity(MyActivity.getStartIntent(context, myZoneId));
....
//In MyActivity class
public static getStartIntent(Context context, int zoneId) {
Intent intent = new Intent(context, MyActivity.class);
intent.putExtra(MyActiviy.ZONE_ID, zoneId);
return zoneId;
}
关于Android:如何使按钮导致 ListView 项目详细信息(在不同的 Activity 中)(主/详细流程),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35813866/
我正在尝试使用 Spark 从 Cassandra 读取数据。 DataFrame rdf = sqlContext.read().option("keyspace", "readypulse
这是代码: void i_log_ (int error, const char * file, int line, const char * fmt, ...) { /* Get erro
我必须调试一个严重依赖 Gtk 的程序。问题是由于某些原因,在使用 GtkWindow 对象时开始出现许多运行时警告。问题是,即使 Gtk 提示严重错误,它也不会因这些错误而中止。我没有代码库的更改历
我正在尝试从已有效编译和链接的程序中检索二进制文件。我已经通过 GL_PROGRAM_BINARY_LENGTH 收到了它的长度。该文档说有两个实例可能会发生 GL_INVALID_OPERATION
我有一个托管在 Azure 环境中的服务。我正在使用控制台应用程序使用该服务。这样做时,我得到了异常: "The requested service, 'http://xxxx-d.yyyy.be/S
我有以下代码,它被 SEGV 信号杀死。使用调试器表明它被 main() 中的第一个 sem_init() 杀死。如果我注释掉第一个 sem_init() ,第二个会导致同样的问题。我试图弄清楚是什么
目前我正在编写一个应用程序(目标 iOS 6,启用 ARC),它使用 JSON 进行数据传输,使用核心数据进行持久存储。 JSON 数据由 PHP 脚本通过 json_encode 从 MySQL 数
我对 Xamarin.Forms 还是很陌生。我在出现的主页上有一个非常简单的功能 async public Task BaseAppearing() { if (UserID
这是我的代码的简化版本。 public class MainActivity extends ActionBarActivity { private ArrayList entry = new Arr
我想弄明白为什么我的两个 Java 库很难很好地协同工作。这是场景: 库 1 有一个类 A,其构造函数如下: public A(Object obj) { /* boilerplate */ } 在以
如果网站不需要身份验证,我的代码可以正常工作,如果需要,则在打印“已创建凭据”后会立即出现 EXC_BAD_ACCESS 错误。我不会发布任何内容,并且此代码是直接从文档中复制的 - 知道出了什么问题
我在使用 NSArray 填充 UITableView 时遇到问题。我确信我正在做一些愚蠢的事情,但我无法弄清楚。当我尝试进行简单的计数时,我得到了 EXC_BAD_ACCESS,我知道这是因为我试图
我在 UITableViewCell 上有一个 UITextField,在另一个单元格上有一个按钮。 我单击 UITextField(出现键盘)。 UITextField 调用了以下方法: - (BO
我有一个应用程序出现间歇性崩溃。崩溃日志显示了一个堆栈跟踪,这对我来说很难破译,因此希望其他人看到了这一点并能为我指出正确的方向。 基本上,应用程序在启动时执行反向地理编码请求,以在标签中显示用户的位
我开发了一个 CGImage,当程序使用以下命令将其显示在屏幕上时它工作正常: [output_view.layer performSelectorOnMainThread:@selector(set
我正在使用新的 EncryptedSharedPreferences以谷歌推荐的方式上课: private fun securePrefs(context: Context): SharedPrefe
我有一个中继器,里面有一些控件,其中一个是文本框。我正在尝试使用 jquery 获取文本框,我的代码如下所示: $("#").click(function (event) {}); 但我总是得到 nu
在以下场景中观察到 TTS 初始化错误,太随机了。 已安装 TTS 引擎,存在语音集,并且可以从辅助功能选项中播放示例 tts。 TTS 初始化在之前初始化和播放的同一设备上随机失败。 在不同的设备(
maven pom.xml org.openjdk.jol jol-core 0.10 Java 类: public class MyObjectData { pr
在不担心冲突的情况下,可以使用 MD5 作为哈希值,字符串长度最多为多少? 这可能是通过为特定字符集中的每个可能的字符串生成 MD5 哈希来计算的,长度不断增加,直到哈希第二次出现(冲突)。没有冲突的
我是一名优秀的程序员,十分优秀!