0
我今天給我的應用程序添加了一個滾動視圖。我想要一些像google now cards這樣的東西。它工作,但我希望它是全屏,但在底部。在底部我有一個EditText和一個按鈕,我希望scrollview停在那裏,這樣它們都可見。我怎樣才能做到這一點? :■ 這是我的活動:ScrollView,LinearLayout混沌
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/chat_layout"
android:icon="@drawable/ic_linkrholoorange"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".Chat"
android:text = "Now">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true" >
<com.linkr.chat.NowLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#e3e3e3"
android:orientation="vertical">
<TextView
android:id="@+id/card"
style="@style/nowCardStyle"
android:layout_width="match_parent"
android:layout_height="100dp"
tools:context=".Chat"
android:layout_alignTop="@+id/linearLayout"
android:layout_alignLeft="@+id/linearLayout"/>
</com.linkr.chat.NowLayout>
</ScrollView>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="10dp"
android:id="@+id/linearLayout">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:ems="10"
android:id="@+id/chatTextArea"
android:layout_alignTop="@+id/sendButton"
android:layout_toLeftOf="@+id/sendButton"
android:layout_alignBottom="@+id/sendButton"
android:layout_alignLeft="@+id/scrollView"
android:enabled="false"
android:focusable="false"
android:hint="What's on your mind..."
android:visibility="visible"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/sendButton"
android:gravity="bottom"
android:background="@drawable/social_send_now"
android:onClick="sendMethod"
android:layout_alignBottom="@+id/scrollView"
android:layout_alignRight="@+id/scrollView"/>
</LinearLayout>
</RelativeLayout>
<!-- The navigation drawer -->
<!--<ImageView
android:id="@+id/drawerimage"
android:layout_width="320dp"
android:layout_height="100dp"
android:layout_gravity="start"
android:background="@drawable/desert"
android:choiceMode="singleChoice"></ImageView>-->
<ListView
android:id="@+id/drawer"
android:layout_width="320dp"
android:layout_height="match_parent"
android:background="#F3F3F4"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:hint="What's on your mind?"
android:divider="@android:color/darker_gray"
android:dividerHeight="1dp" ></ListView>
</android.support.v4.widget.DrawerLayout>
我希望你能幫助我 非常感謝!
我希望scrollview是全屏。它不是。周圍有一個黑色的框架。我希望LinearLayout能夠在它上面/我希望scrollview停止LinearLayout開始的地方。 – calmandniceperson
是的,你是否嘗試過我的解決方案?它實現了嗎?如果不是這樣,也許我可以調整我的答案? – codeMagic
是的,有點^^,但另一個問題是,我不能把任何東西放在scrollview之外。我需要scrollview全屏 – calmandniceperson