gpt4 book ai didi

java - Sherlock 操作栏中的 TextView

转载 作者:行者123 更新时间:2023-11-29 03:33:00 25 4
gpt4 key购买 nike

我有一个应用程序,我想在操作栏 (sherlock) 中显示当前章节编号。我的 menu.xml 看起来像:

<menu xmlns:android="http://schemas.android.com/apk/res/android" >

<item
android:id="@+id/TextView01"
android:title=""/>

</menu>

使用以下代码时出现 NullPointerException:

titleView = (TextView) findViewById(R.id.TextView01);
titleView.setText(chapterno);

任何想法,我们如何在 sherlock 操作栏中显示文本并动态更新它。

ActionBar 看起来像:

enter image description here

最佳答案

您必须在操作栏中使用自定义布局而不是菜单项来实现此目的。

onCreate()

ActionBar mActionBar = getSupportActionBar();
mActionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
mActionBar.setCustomView(R.layout.actionbar_number);

你的布局应该是:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="right"
android:layout_marginRight="@dimen/marginMedium"
android:gravity="center_vertical"
android:text="0"
android:textColor="@color/actionbar_number"
android:textSize="28dp"
android:textStyle="bold" />

要更新号码:

TextView chapterNumber = (TextView) getSupportActionBar().getCustomView();
chapterNumber.setText(String.valueOf(number));

更新要添加菜单操作项,您应该能够照常执行此操作,但要小心,您的自定义布局的位置可能会与菜单项重叠,或者如果它们出现在操作栏中则隐藏。

menu.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >

<item
android:id="@+id/menu_share"
android:actionProviderClass="com.actionbarsherlock.widget.ShareActionProvider"
android:icon="@drawable/ic_menu_share"
android:showAsAction="ifRoom"
android:title="@string/share"
android:visible="false"/>

</menu>

然后在你的 Activity 中。

@Override
public boolean onCreateOptionsMenu(Menu menu) {
com.actionbarsherlock.view.MenuInflater inflater = getSupportMenuInflater();
inflater.inflate(R.menu.menu, menu);

// Locate MenuItem with ShareActionProvider
MenuItem item = menu.findItem(R.id.menu_share);
ShareActionProvider shareActionProvider = (ShareActionProvider) item.getActionProvider(); //line 387

Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
shareIntent.setType("text/plain");

shareIntent.putExtra(Intent.EXTRA_TEXT, "Test");
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "Test");

shareActionProvider.setShareIntent(shareIntent);

return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {

switch (item.getItemId()) {

case android.R.id.home:
onBackPressed();
break;

case R.id.menu_share:
// EXAMPLE OF WHAT YOU CAN DO
// Intent sharingIntent = new Intent(Intent.ACTION_SEND);
// sharingIntent.setType("image/png");
// sharingIntent.putExtra(android.content.Intent.EXTRA_STREAM, Uri.fromFile(f));
// //sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject Here");
// //sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Body");
// startActivity(Intent.createChooser(sharingIntent, "Share via"));

break;

default:
break;

}
return super.onOptionsItemSelected(item);
}

关于java - Sherlock 操作栏中的 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17100531/

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