android橫向列表
① android 橫向listview怎麼居中
這需要自定義listView,自定義一個類繼承baseadapter,然後在布局裡再建一個xml文件,比如item.xml,在item.xml里定義兩個textview.兩個textview放在橫向線性布局裡,字體顏色和位置就很簡單啦,然後把內容寫在自定義的listview里就ok了。
② 如何把ListView橫向顯示
Android中,默認ListView都是縱向拖動的,橫向拖動常用的有兩種方式:
1、使用Gallery控制項,但該控制項限制較多,很多時候難以滿足我要求。比如:用該控制項選中其中一項時,該項會自動居中,這樣的功能有時是不需要的。因此,該控制項靈活性很小。
2、使用HorizentalScrollView,該控制項可以支持橫向滑動,但是並非使用AdapterView實現,不能管理內存。因此在內容較大較多時,會有內存問題。
③ Android ListView列表如何橫向滾動
如果在你的源碼基礎上改好像不太可能,你把textview改成多行顯示吧
④ 如何把ListView橫向顯示
<HorizontalScrollView android:background="@color/weak_yellow"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:visibility="gone" android:id="@+id/hsView">
<FrameLayout android:id="@+id/flPlayBack"
android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout
android:layout_width="1220dip" android:id="@+id/llPlayback"
android:layout_height="wrap_content" android:orientation="horizontal">
<GridView
android:id="@+id/gvVideoPlayBack"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:verticalSpacing="2dp" android:horizontalSpacing="2dp"
android:stretchMode="none" android:columnWidth="240dip" />
</LinearLayout>
</FrameLayout>
</HorizontalScrollView>
⑤ android橫向下拉框怎麼做的
用popwindow,或者spiner.這兩個控制項可以作為某個控制項的下拉彈出。spiner是一個列表,popwindow更強大一點,可以自定義布局。另外還有一個控制項是帶有下拉列表的Listview怎麼拼寫我忘了好像是 "E啥啥啥Listview"
⑥ 如何實現android中三個單選按鈕橫向排列且只能選一個
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/row_item_margin">
<TextView
android:id="@+id/tvStorageWay"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="儲存方式:"/>
<RadioGroup
android:id="@+id/rgStorageWay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/tvStorageWay"
android:gravity="center_vertical"
android:orientation="horizontal">
<RadioButton
android:id="@+id/rbPack"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="包裝"/>
<RadioButton
android:id="@+id/rbBulk"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/row_item_margin"
android:layout_weight="1"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="散裝"/>
<RadioButton
android:id="@+id/rbStorageWayOther"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/row_item_margin"
android:layout_weight="1"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="其它"/>
</RadioGroup>
</RelativeLayout>
⑦ android 怎麼讓listview橫著
CSDN論壇去看看。。
Dim lvhti As LVHITTESTINFO
Call GetCursorPos(lvhti.pt)
Call ScreenToClient(listview1.hwnd, lvhti.pt)
Call SendMessage(listview1.hwnd, LVM_SUBITEMHITTEST, 0, lvhti.pt)
i = lvhti.iItem
If i > = 0 Then
i=i+1 '這時候的i就是點的行數
end if
以上代碼寫在雙擊事件中,
其中用的到API函數和常量,你自己查資料。