标题未显示在mainActivity上

时间:2013-10-12 13:51:27

标签: android android-actionbar android-spinner

我在Android Action Bar上设置了一个微调器,我已经将微调器放在test.xml布局中,我在OnCreate()方法的主要活动中调用它是这样的

   ActionBar actionBar = getActionBar();
    actionBar.setBackgroundDrawable(new ColorDrawable(Color.GREEN));
    actionBar.setDisplayShowCustomEnabled(true);

    actionBar.setCustomView(R.layout.activity_test);
    setContentView(R.layout.activity_main);
    actionBar.setTitle("Home");

但是我的头衔没有显示出来。我想在主题栏上显示HOME作为标题我该怎么办?

我的activity_test

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Spinner
        android:id="@+id/planets_spinner"
        android:layout_width="100dp"
        android:layout_height="50sp"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
      android:background="@drawable/arrow2"
        android:layout_weight="0.08"
        android:drawSelectorOnTop="true" />

</RelativeLayout>

2 个答案:

答案 0 :(得分:1)

我已经通过向activity_test添加textView解决了这个问题,因为整个活动都显示在ActionBar上,所以我添加了一个文本视图,问题解决了:)

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >


    <Spinner
        android:id="@+id/planets_spinner"
        android:layout_width="100dp"
        android:layout_height="50sp"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:background="@drawable/arrow2"
        android:drawSelectorOnTop="true" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/planets_spinner"
        android:layout_alignParentLeft="true"
        android:layout_marginBottom="6dp"
        android:layout_marginLeft="6dp"
        android:textStyle="bold"
        android:textSize="20sp"
        android:textColor="#ffffff"
        android:text="Scene" />

</RelativeLayout>

答案 1 :(得分:0)

设置android:layout_alignParentRight="true"时,RelativeLayout会使用包括标题空间和标题在内的所有空格。您可以通过在RelativeLayout周围绘制边框来检查行为。但是如果不使用android:layout_alignParentRight="true",RelativeLayout不会占用更多空间。如果您使用android:layout_alignParentLeft="true",它也不会占用更多空间。仅对android:layout_alignParentRight="true"起作用很奇怪。为了显示父母右侧的视图,以下内容对我有用:

<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/profile_image"
        android:layout_width="40dp"
        android:src="@drawable/ic_launcher"
        android:layout_height="40dp"
        android:background="?android:selectableItemBackground"
        android:padding="3dp"
        android:scaleType="centerCrop" /> 

不要使用RelativeLayout。只是你需要的观点。 然后,您可以使用如下所示的LayoutParams对齐:

actionBar.setCustomView(R.layout.actionbar_layout);
actionBar.setDisplayShowCustomEnabled(true);
ImageView imageProfile = (ImageView)actionBar.getCustomView();
int length = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 40, getResources().getDisplayMetrics());
Toolbar.LayoutParams layoutParams = new Toolbar.LayoutParams(
                length,
                length, Gravity.RIGHT
                | Gravity.CENTER_VERTICAL);
imageProfile.setLayoutParams(layoutParams);

现在您应该能够查看ActionBar标题和ImageView。