このタイプのxmlページをデザインしたいと思います。 私は多くのコードを試しました。新しい問題が起こるたびに。私は下部のナビゲーションバーが修正されている必要があります。グリッドビューでは、android:numColums=3
、android:verticalSpacing
、android:horizontalSpacing
と同じです(プロファイル図ビューグリッド画像のように見えます)。このグリッドビューのXMLページはどのように設計するのですか?
XMLコード:あなたのデザインを1として
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".MainSettingClass">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="175dp"
android:background="#dadada"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:id="@+id/profile_image"
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/com_facebook_button_background"/>
<TextView
android:id="@+id/amsc_txt_fbusername"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="TextView"
android:layout_marginTop="2dp" />
</LinearLayout>
<GridView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/grid_test"
android:verticalSpacing="2dp"
android:horizontalSpacing="2dp"
android:background="#FFFFFF"
android:stretchMode="columnWidth"
android:columnWidth="85dp"
android:numColumns="3"/>
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_gallery"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="#ffffff"
app:menu="@menu/bottom_navigation_gallery"/>
</FrameLayout>
あなたが何をしましたか? –
_私は多くのコードを試しました...あなたのコードはどこですか? –
あなたが達成した努力を見せてください。 – Akshay