2
A
回答
0
它們與此相似。但他們有他們自己的術語DashBoard。
這裏是一個教程鏈接,
這裏是說明幾件事情要你一個鏈接,
http://android-developers.blogspot.in/2010/05/twitter-for-android-closer-look-at.html
而且也是這個問題在這裏,這是以前討論它,
,這看起來是建議的方式做到這一點,
<com.google.android.apps.iosched.ui.widget.DashboardLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button android:id="@+id/home_btn_schedule"
style="@style/DashboardButton"
android:text="@string/btn_schedule"
android:drawableTop="@drawable/home_btn_schedule" />
<Button android:id="@+id/home_btn_map"
style="@style/DashboardButton"
android:text="@string/btn_map"
android:drawableTop="@drawable/home_btn_map" />
<Button android:id="@+id/home_btn_sessions"
style="@style/DashboardButton"
android:text="@string/btn_sessions"
android:drawableTop="@drawable/home_btn_sessions" />
<Button android:id="@+id/home_btn_starred"
style="@style/DashboardButton"
android:text="@string/btn_starred"
android:drawableTop="@drawable/home_btn_starred" />
<Button android:id="@+id/home_btn_vendors"
style="@style/DashboardButton"
android:text="@string/btn_vendors"
android:drawableTop="@drawable/home_btn_vendors" />
<Button android:id="@+id/home_btn_announcements"
style="@style/DashboardButton"
android:text="@string/btn_announcements"
android:drawableTop="@drawable/home_btn_announcements" />
0
public class Dashboard extends Activity
implements OnItemClickListener {
Context con;
static LauncherIcon[] ICONS = {
new LauncherIcon(R.drawable.breakfasdd, "text1"),
new LauncherIcon(R.drawable.lunch, "text2"),
new LauncherIcon(R.drawable.dinner1, "text3"),
new LauncherIcon(R.drawable.syn1, "text4"),
};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.dashboard);
GridView gridview = (GridView) findViewById(R.id.dashboard_grid);
gridview.setAdapter(new ImageAdapter(this));
gridview.setOnItemClickListener(this);
}
static class LauncherIcon {
final String text;
final int imgId;
public LauncherIcon(int imgId, String text) {
super();
this.imgId = imgId;
this.text = text;
}
}
static class ImageAdapter extends BaseAdapter {
private Context mContext;
public ImageAdapter(Context c) {
mContext = c;
}
@Override
public int getCount() {
return ICONS.length;
}
@Override
public LauncherIcon getItem(int position) {
return null;
}
@Override
public long getItemId(int position) {
return 0;
}
static class ViewHolder {
public ImageView icon;
public TextView text;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
ViewHolder holder;
if (v == null) {
LayoutInflater vi = (LayoutInflater) mContext
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.dashboard_icon, null);
holder = new ViewHolder();
holder.text = (TextView) v
.findViewById(R.id.dashboard_icon_text);
holder.icon = (ImageView) v
.findViewById(R.id.dashboard_icon_img);
v.setTag(holder);
} else {
holder = (ViewHolder) v.getTag();
}
holder.icon.setImageResource(ICONS[position].imgId);
holder.text.setText(ICONS[position].text);
return v;
}
}
,並獲得項目選擇
@Override
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
int pos = position;{
}
dashboard_icon.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/dashboard_icon_img"
android:layout_width="fill_parent"
android:layout_height="96.0dip"
android:scaleType="fitCenter" />
<TextView
android:id="@+id/dashboard_icon_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20.0dip"
android:layout_marginTop="2.0dip"
android:gravity="center"
android:textAppearance="?android:textAppearanceSmall"
android:textColor="@android:color/black" />
</LinearLayout>
dashboard.xml
<?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:orientation="vertical" >
<Button
android:id="@+id/back"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:layout_weight="1"
android:text="BACK" />
<GridView
android:id="@+id/dashboard_grid"
style="@style/dashboard"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:listSelector="@android:color/transparent"
android:stretchMode="columnWidth"
android:verticalSpacing="20.0dip" />
</RelativeLayout>
相關問題
- 1. 是這些內置的CSS類嗎?
- 2. 這些例子是C#閉包嗎?
- 3. 這些是一樣的嗎? ASYNC Javascript
- 4. 這些值也是值對象嗎?
- 5. 這些類是線程安全的嗎?
- 6. 這些類屬性是多餘的嗎?
- 7. 這些是我的泄漏嗎?
- 8. 這些是mgo的相同版本嗎?
- 9. 這些別名是多餘的嗎?
- 10. 我們的一些Android應用內產品是訂閱,有些則不是,這是允許的嗎?
- 11. Python:這些都一樣嗎?
- 12. Symfony2/FOSUserBundle能做這些嗎?
- 13. 這些類變量嗎?
- 14. 這些天使用VC++嗎?
- 15. 這些都一樣嗎?
- 16. 這些線程安全嗎?
- 17. PHP - 這是進行這些更改的有效方法嗎?
- 18. 這些是這個3D立方體的正常值嗎?
- 19. gridview SelectedDataKey - 我使用這個權利嗎?
- 20. 這是Android下TThread的bug嗎?在Windows
- 21. 這是Android Studio的錯誤嗎?
- 22. 這是Android上下文泄漏嗎?
- 23. Android - 這是內存泄漏嗎?
- 24. 這是將文本框綁定到gridview的正確方法嗎?
- 25. 這是jQuery嗎?
- 26. 這是LINQable嗎?
- 27. 這是RESTful嗎?
- 28. 這些所有這些版本的Visual Studio都需要嗎?
- 29. Android拖放Imageview(這是GridView的一部分)
- 30. Android平臺,我可以滿足這些要求嗎?
以下鏈接可以幫助你http://www.technotalkative.com/android-gridview-example/ –