我的Blog我做主^_^

          走向一條通往JAVA的不歸路...

            BlogJava :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
            64 隨筆 :: 68 文章 :: 77 評(píng)論 :: 0 Trackbacks

          在LinearLayout外面包一層ScrollView即可,如下代碼

          Apidemo 中關(guān)于如何使用ScrollView說(shuō)明,請(qǐng)參考:
          <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:scrollbars="none">

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

                 <TextView
                   android:layout_width="fill_parent"
                   android:layout_height="wrap_content"
                   android:text="@string/scroll_view_1_text_1"/>

                 <Button
                   android:layout_width="fill_parent"
                   android:layout_height="wrap_content"
                   android:text="@string/scroll_view_1_button_1"/>
          <TextView
                   android:layout_width="fill_parent"
                   android:layout_height="wrap_content"
                   android:text="@string/scroll_view_1_text_6"/>

                 <Button
                   android:layout_width="fill_parent"
                   android:layout_height="wrap_content"
                   android:text="@string/scroll_view_1_button_6"/>

          </LinearLayout>
          </ScrollView>
          2:頁(yè)面跳轉(zhuǎn)的實(shí)現(xiàn)(不同activity間的切換)

          java代碼 加在button哪里同時(shí)在AndroidManifest.xml 哪里加上一句話,放在第一個(gè)activity 的下面

          xml:代碼:

          <activity android:name="BCD" android:label="@string/bcd_title"></activity>

          <?xml version="1.0" encoding="utf-8"?>
          <manifest xmlns:android="
          http://schemas.android.com/apk/res/android"
                android:versionCode="1"
                android:versionName="1.0" package="com.demo.android.AutoGnosis">
              <application android:icon="@drawable/icon" android:label="@string/app_name">
                  <activity android:name=".AutoGnosis"
                            android:label="@string/app_name">
                      <intent-filter>
                          <action android:name="android.intent.action.MAIN" />
                          <category android:name="android.intent.category.LAUNCHER" />
                      </intent-filter>
                  </activity>
                  <activity android:name="BCD" android:label="@string/bcd_title"></activity> //添加標(biāo)簽屬性與values/report.xml對(duì)應(yīng)

              </application>
              <uses-sdk android:minSdkVersion="3" />

          </manifest>

           

           

           

          跳轉(zhuǎn)代碼:

          private void setListensers() {
              Log.d(TAG,"set Listensers");
             button_next.setOnClickListener(bt_next);
          }
              private Button.OnClickListener bt_next = new Button.OnClickListener(){
              public void onClick(View v){
                //switch to BDC page跳轉(zhuǎn)到BDC.class
                Intent intent = new Intent();
                 intent.setClass(AutoGnosis.this, BCD.class);
                 startActivity(intent);    
                 Intent intent = new Intent();
                 intent.setClass(Bmi.this, Report.class);
                 Bundle bundle = new Bundle();   //bundle帶參數(shù)跳轉(zhuǎn)
                 bundle.putString("KEY_HEIGHT",field_height.getText().toString());
                 bundle.putString("KEY_WEIGHT",field_weight.getText().toString());
                 intent.putExtras(bundle);
                 startActivity(intent);
              }
              };



          posted on 2011-05-06 16:28 java_蟈蟈 閱讀(7480) 評(píng)論(0)  編輯  收藏 所屬分類(lèi): Android
          主站蜘蛛池模板: 深圳市| 望江县| 汉川市| 隆化县| 措美县| 颍上县| 石台县| 平昌县| 龙口市| 叙永县| 来宾市| 嘉义市| 尼玛县| 河池市| 钟山县| 衡阳县| 漳平市| 阜平县| 宝鸡市| 廉江市| 淮南市| 托克逊县| 镇远县| 宁国市| 青铜峡市| 冕宁县| 翁牛特旗| 高陵县| 乌拉特中旗| 米泉市| 宜阳县| 侯马市| 温州市| 琼海市| 吐鲁番市| 东乡| 航空| 山东| 图木舒克市| 岢岚县| 沁源县|