我正在尝试将所有项目保持在正确的位置我在Google中找到了代码,但它无法与我合作。
latest_lsv_item.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.apps.newsapplication"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/list_bg"
android:orientation="horizontal" >
<com.example.util.RoundedImageView
android:id="@+id/img_newslistlatest"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_gravity="center"
android:layout_margin="13dp"
android:scaleType="centerCrop"
app:border_color="@color/divider"
app:border_width="8dip"
app:round_background="true" />
<TextView
android:id="@+id/txt_newslistheadinglatest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="0dp"
android:maxLines="3"
android:text=""
android:textSize="18sp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/text_color" />
</LinearLayout>
fragment_lastest.xml
<LinearLayout 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"
android:background="@color/background_color"
android:gravity="center"
android:id="@+id/rootlayout"
android:orientation="vertical" >
<ListView
android:id="@+id/lsv_latest"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="#00000000"
android:divider="@color/divider"
android:dividerHeight="1dp">
</ListView>
</LinearLayout>
如果你想要更多代码或文件,我会在这里通过它...
activity_main.xml中
LastFragment.java
等...
我尝试使用RTL,但也没有和我合作