片段和切换按钮

时间:2013-05-12 06:55:48

标签: android android-fragments

我是Android新手。我正在尝试向一个扩展Fragment类的类添加一个简单的切换按钮。

我尝试过所有东西,但我无法让它发挥作用。我设法添加了一个普通的按钮,但这对我没用。

我想要的只是添加一个切换按钮。

请帮帮我。

全部谢谢

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#cccccc" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="18dp"
        android:text="Light Tab"
        android:textColor="#333333"
        android:textSize="20sp" />

    <Button
        android:id="@+id/fragment_button"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView1"
        android:layout_alignRight="@+id/textView1"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="61dp"
        android:text="@string/btn_fragment" />

</RelativeLayout>




package com.baris.smartgame;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import android.app.Activity;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

public class Light extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        View view = inflater.inflate(R.layout.light, container, false);

        ((Button) view.findViewById(R.id.fragment_button))
                .setOnClickListener(new OnClickListener() {

                    @Override
                    public void onClick(View v) {
                        Activity activity = getActivity();

                        if (activity != null) {
                            Toast.makeText(activity,
                                    R.string.toast_you_just_clicked_a_fragment,
                                    Toast.LENGTH_SHORT).show();
                        }
                    }

                });

        return view;
    }
}

1 个答案:

答案 0 :(得分:1)

以此为例:

<LinearLayout
        android:id="@+id/txtDayTypes"
        android:layout_below="@+id/main_header"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
   <ToggleButton
            android:id="@+id/tglDay1"
            android:layout_width="160dp"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:text="Saturday" 
            android:textOn="Saturday"
            android:textOff="Saturday"
            android:checked="true"/>
</LinearLayout>

您可以通过以下方式访问它:

if(currentButton != R.id.tglDay1)  ((ToggleButton)findViewById(R.id.tglDay1)).setChecked(false);