如何将图像更改为textview中的按钮以调用另一个活动

时间:2012-10-10 08:53:59

标签: android android-layout android-intent android-emulator android-widget

将textview与背景图片和另外两张图片一起使用,现在我想让这两个图像作为我的按钮(Back& Order Button)工作,如 - iPHONE,因为通过使用这些按钮,我想调用另一个活动,我正在放置我的xml textview

    <TextView
   android:id="@+id/actionbar"
   android:layout_width="fill_parent"
   android:layout_height="40dip"
   android:background="@drawable/header"
   android:drawableLeft="@drawable/back"
   android:drawableRight="@drawable/final_order"
   android:gravity="center_vertical|center_horizontal"
   android:shadowColor="@android:color/black"
   android:shadowDx="1"
   android:shadowDy="1"
   android:shadowRadius="1"
   android:text="Pizza"
   android:textColor="#FFFFFF"
   android:textSize="25dp"
   android:textStyle="bold" />

请写一些简短的代码来实现这个目标

2 个答案:

答案 0 :(得分:1)

您可以使用ImageButton代替textview

OR

textview本身有一个onclickevent

e.g

textview.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View arg0) {
                // TODO Auto-generated method stub
                               // call your activities using intent from here

            }
        });

答案 1 :(得分:0)

非常简单,这是我的header.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<Button 
    android:id="@+id/button_up" 
    android:layout_width="48dp" 
    android:layout_height="48dp"
    android:drawableTop="@drawable/undo" />

<TextView
    android:id="@+id/path"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:padding="4dp"
    android:textSize="18sp"
    android:singleLine="true"
    android:ellipsize="marquee" 
    android:marqueeRepeatLimit="marquee_forever"
    android:scrollHorizontally="true" 
    android:focusable="true" 
    android:focusableInTouchMode="true"
    android:layout_toRightOf="@+id/button_up"
    android:layout_toLeftOf="@+id/button_play"
    android:text="@string/path" />

<Button
    android:id="@+id/button_play"
    android:layout_width="48dp"
    android:layout_height="48dp"
    android:layout_toLeftOf="@+id/button_settings"
    android:drawableTop="@drawable/play" />

<Button
    android:id="@+id/button_settings"
    android:layout_width="48dp"
    android:layout_height="48dp"
    android:layout_alignParentRight="true"
    android:drawableTop="@drawable/settings" />

</RelativeLayout>

我将它包含在activity_main.xml中,这是我的应用程序的默认xml。包含后有分隔线,接下来是我的listview白色项目。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="4dp"
android:background="@color/gray_light"
android:orientation="vertical" >

<include layout="@layout/header" />

<View
    android:id="@+id/separator_up"
    android:layout_width="fill_parent"
    android:layout_height="2dp"
    android:layout_marginTop="2dp"
    android:background="@color/blue_light" />

<include layout="@layout/list" />

 </LinearLayout>