0

1 つの Android アプリケーションを開発する必要があります。

ここでは、フラグメントの概念を使用しています。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:id="@+id/_listDetails"
>

<RelativeLayout 

    android:layout_width="match_parent"
    android:layout_height="wrap_content"

    android:orientation="horizontal"

    android:id="@+id/layout"
     >
     <ImageView
        android:id="@+id/pos"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
         android:layout_toLeftOf="@+id/neg"
        android:src="@drawable/a_pos_off" />
      <ImageView
        android:id="@+id/neg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_toLeftOf="@+id/imageView5"
        android:src="@drawable/a_neg_off" />



                       </RelativeLayout>

 <LinearLayout 
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/layout"
android:orientation="horizontal" >

 <fragment
  android:id="@+id/activity_main"
  android:name="com.xmlparsing.MainActivity"
  android:layout_width="0px"
  android:layout_height="match_parent"
  android:layout_weight="1" />
 <fragment
  android:id="@+id/fragment2"
  android:name="com.xmlparsing.SubCate"
  android:layout_width="0px"
  android:layout_height="match_parent"
  android:layout_weight="1" />
  </LinearLayout>
  </RelativeLayout>

ここでは、MainActivity.java と SubCate.java の2 つのフラグメントを使用しました。

  public class AndroidListFragmentActivity extends Activity {

   /** Called when the activity is first created. */
  @Override
   public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.fragment);
       }}

ここで、正の画像はfragment.xmlファイルにあります...ここでこれらの正の画像をクリックする必要がある場合は、2番目のフラグメント(SubCate.java)のフルコンテンツのテキストサイズを大きくする必要があることを意味します...

どのようにできるのか ???これらの解決策を教えてください...

これは私の2 番目のフラグメント(SubCate.java) コードです。

 @TargetApi(Build.VERSION_CODES.HONEYCOMB)
 public class SubCate extends  Fragment
 {
    int count = 0, i, j;
 WebSettings webSettings;
    WebView fullcontent;
     ImageView positive,negative;
    AndroidListFragmentActivity _listDetailsFrag;
    View activityView;

      @Override
  public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);

  }     

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

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



    fullcontent = (WebView) view.findViewById(R.id.fullcontent);

    Bundle bundle = getArguments();
    return view;

        }



       public void updateDetail(String articlefullcontent) {

        _FullContent = articlefullcontent.substring(1);
        fullcontent.setWebChromeClient(new WebChromeClient());
             webSettings = fullcontent.getSettings();


            fullcontent.getSettings();
            fullcontent.loadDataWithBaseURL(null, _FullContent, "text/html", "utf-8", null);

      positive  = ((ImageView )activityView.findViewById(R.id.pos));
             positive.setOnClickListener(new OnClickListener() {


                public void onClick(View v) {
                    count++;

                        if (count == -1)
                        {
                        webSettings.setTextSize(WebSettings.TextSize.SMALLER);
                        positive.setImageResource(R.drawable.a_pos_off);
                        negative.setImageResource(R.drawable.a_neg_on);
                        }
                        else
                            if (count == 0)
                        {
                            webSettings.setTextSize(WebSettings.TextSize.NORMAL);
                            positive.setImageResource(R.drawable.a_pos_off);
                            negative.setImageResource(R.drawable.a_neg_off);
                        }
                        else
                if (count >= 1)
                {   count=1;
                    webSettings.setTextSize(WebSettings.TextSize.LARGER);
                    positive.setImageResource(R.drawable.a_pos_on);
                    negative.setImageResource(R.drawable.a_neg_off);
                }


            } 
            }); 
              }
            }

アプリを実行してクリックする必要があります imageview は、フルコンテンツテキストが値を増加させないことを意味します...どうすればよいですか??? 私を助けて、解決策を教えてください???

4

1 に答える 1

3

フラグメントは、対応する ImageView を見つけることができません。次に編集して確認します。

positive = (ImageView )getActivity().findViewById(R.id.pos);//use getActivity() Method
于 2013-04-30T04:57:33.707 に答える