フラグメントにリスト (アンドロイド リスト ビューではなく単純な html リスト) を挿入する必要があります。レイアウト ファイルの「about.xml」ページには、string.xml ファイルからデータを取得して動的にクラスター化されるテキストビューが 1 つだけあります。string.xml の宣言は次のようになります。
<string name="AboutThisApp"><![CDATA[
<div>
<p>here is the list of functions: </p>
</div>
<ul>
<li> Sportsmanship</li>
<li> Participation</li>
<li> Safety/Risk Minimization</li>
<li> Sound Traditions of the Sport</li>
<li> Support for USA Footvall\'s Mission</li>
<li> Balance Between Offense and Defence</li>
</ul>
]]></string>
このデータは、次のようなレイアウト フォルダーにあるテキストビューでアクセスされます (ファイルは「about.xml」です)。
<TextView
android:id="@+id/textViewAbout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="20dp"
android:paddingLeft="10dp"
android:paddingRight="16dp"
android:textColor="@color/white"
android:textSize="16dp"
customText:textcustomFont="fonts/montserrat-r.ttf" />
Java ファイル内のデータにアクセスするオブジェクトは次のとおりです。
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.text.Html;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.usafootball.rulesapp.R;
import com.usafootball.rulesapp.customfont.TextViewPlus;
public class AboutThisAppFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View mView = inflater.inflate(R.layout.about,
container, false);
TextViewPlus textViewPlus = (TextViewPlus) mView.findViewById(R.id.textViewAboutUSAF);
textViewPlus.setText(Html.fromHtml(getString(R.string.AboutThisApp)));
return mView;
}
}
より明確にするために、データが表示されていますが、段落 NOT LIST の形式で表示されます。これを行う方法についての提案...