微调标题应该是图像和副标题是文本

时间:2013-11-19 03:36:55

标签: android android-actionbar actionbarsherlock android-actionbar-compat

我使用动作栏。其中使用旋转器我希望它的标题应该是图像/图标和可选项目应该是文本,点击图标后它将显示字幕。我想只在ActionBar中有图标点击图标时会出现下拉列表/微调器。有一个示例Spinner in action bar with only icon but not the selected option但是没有解决我的问题。我想只在ActionBar和下拉列表中有图标点击图标时出现/微调器。新的Android.Help Me。

2 个答案:

答案 0 :(得分:0)

您需要按一个按钮并将任何图像设置为其背景。然后单击按钮调用Spinner.performClick()以打开微调器。

下面是实现相同功能的代码。  在xml文件中:

     <Button
        android:id="@+id/font"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_marginLeft="50dp"
        android:layout_weight="0.5"
        android:background="@drawable/textsel" /> 

     <Spinner
        android:id="@+id/spin"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_marginLeft="10dp"
        android:layout_weight="0.5"
        android:dropDownHorizontalOffset="0dp"
        android:dropDownVerticalOffset="20dp"
        android:dropDownWidth="500dp"
        android:paddingTop="2sp"
        android:spinnerMode="dropdown" >
    </Spinner>

在Java类中:

      Spinner spin = (Spinner) findViewById(R.id.spin);

      Button typetext = (Button) findViewById(R.id.font);      


      typetext.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            spin.performClick();

        }
    });

答案 1 :(得分:0)

在setOnItemSelected侦听器上,

你可以写

if (((TextView) view) != null) {
        ((TextView) view).setText(null);
}

这样你只会显示图标而不是文字。并将背景设置为您想要的图标。

希望有所帮助。